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.
|
package models
|
|
|
|
type TProtoFiles struct {
|
|
FileId string `xorm:"not null pk comment('文件编码') CHAR(18)"`
|
|
FileName string `xorm:"not null comment('文件名称') VARCHAR(256)"`
|
|
FilePath string `xorm:"not null comment('文件路径') VARCHAR(256)"`
|
|
}
|