- package domain
- import "time"
- type GoodsIntroduction struct {
- Id int `xorm:"'id'" json:"id"`
- GoodsArticleName string `xorm:"'goods_article_name'" json:"goods_article_name"`
- GoodsArticle string `xorm:"'goods_article'" json:"goods_article"`
- CreateBy string `xorm:"'create_by'" json:"create_by"`
- CreateTime time.Time `xorm:"'create_time'" json:"create_time"`
- UpdateBy string `xorm:"'update_by'" json:"update_by"`
- UpdateTime time.Time `xorm:"'update_time'" json:"update_time"`
- }
|