You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
375 B
13 lines
375 B
package model
|
|
|
|
import (
|
|
"gin-vue-admin/global"
|
|
)
|
|
|
|
type ExaFileUploadAndDownload struct {
|
|
global.GVA_MODEL
|
|
Name string `json:"name" gorm:"comment:文件名"` // 文件名
|
|
Url string `json:"url" gorm:"comment:文件地址"` // 文件地址
|
|
Tag string `json:"tag" gorm:"comment:文件标签"` // 文件标签
|
|
Key string `json:"key" gorm:"comment:编号"` // 编号
|
|
}
|