GoodsIntroduction.go 547 B

12345678910111213
  1. package domain
  2. import "time"
  3. type GoodsIntroduction struct {
  4. Id int `xorm:"'id'" json:"id"`
  5. GoodsArticleName string `xorm:"'goods_article_name'" json:"goods_article_name"`
  6. GoodsArticle string `xorm:"'goods_article'" json:"goods_article"`
  7. CreateBy string `xorm:"'create_by'" json:"create_by"`
  8. CreateTime time.Time `xorm:"'create_time'" json:"create_time"`
  9. UpdateBy string `xorm:"'update_by'" json:"update_by"`
  10. UpdateTime time.Time `xorm:"'update_time'" json:"update_time"`
  11. }