hpds_jkw_web/model/trainingDatasetDetail.go

17 lines
1.1 KiB
Go
Raw Permalink Normal View History

2023-05-14 18:23:12 +08:00
package model
type TrainingDatasetDetail struct {
DetailId int64 `xorm:"not null pk autoincr INT(11)" json:"detailId"`
FileName string `xorm:"VARCHAR(200)" json:"fileName"`
FilePath string `xorm:"VARCHAR(1000)" json:"filePath"`
DatasetId int64 `xorm:"INT(11) index default 0" json:"datasetId"` //训练数据集
CategoryId int `xorm:"not null SMALLINT default 1" json:"categoryId"` //训练集分类1训练集;2测试集;3:验证集
FileSize int64 `xorm:"BIGINT" json:"fileSize"` //文件大小
2023-05-14 18:23:12 +08:00
FileMd5 string `xorm:"VARCHAR(64)" json:"fileMd5"` //文件MD5
2023-06-17 09:38:26 +08:00
IsDisease int `xorm:"TINYINT(1)" json:"isDisease"` //是否有病害, 1:有病害;2:无病害;
2023-05-14 18:23:12 +08:00
OperationLogId int64 `xorm:"INT(11) index" json:"operationLogId"` //操作日志编号
Creator int64 `xorm:"INT(11) index" json:"creator"` //上传人
CreateAt int64 `xorm:"created" json:"createAt"` //上传时间
UpdateAt int64 `xorm:"updated" json:"updateAt"` //更新时间
}