hpds_jkw_web/model/brand.go

13 lines
510 B
Go
Raw Normal View History

2023-01-06 10:09:23 +08:00
package model
type Brand struct {
BrandId int64 `xorm:"not null pk autoincr INT(11)" json:"brandId"`
BrandName string `xorm:"varchar(200) not null" json:"brandName"`
BrandLogo string `xorm:"varchar(200) " json:"brandLogo"`
BrandWeb string `xorm:"varchar(200) " json:"brandWeb"`
2023-01-11 18:05:29 +08:00
Status int `xorm:"not null INT(11) default 0" json:"status"`
2023-01-06 10:09:23 +08:00
CreateAt int64 `xorm:"created" json:"createAt"`
UpdateAt int64 `xorm:"updated" json:"updateAt"`
DeleteAt int64 `xorm:"deleted" json:"deleteAt"`
}