2020-04-04 21:39:07 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
2020-08-23 15:13:23 +08:00
|
|
|
"gorm.io/gorm"
|
2020-04-04 21:39:07 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type ExaFileUploadAndDownload struct {
|
|
|
|
gorm.Model
|
2020-09-18 15:41:26 +08:00
|
|
|
Name string `json:"name" gorm:"comment:文件名"`
|
|
|
|
Url string `json:"url" gorm:"comment:文件地址"`
|
|
|
|
Tag string `json:"tag" gorm:"comment:文件标签"`
|
|
|
|
Key string `json:"key" gorm:"comment:编号"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|