GoodsIntroduction.go 581 B

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