GoodsAttributeKey.go 498 B

12345678910111213141516
  1. package domain
  2. type GoodsAttributeKey struct {
  3. Id int64 `xorm:"id" json:"id"`
  4. CategoryId int64 `xorm:"category_id" json:"category_id"`
  5. AttributeName string `xorm:"attribute_name" json:"attribute_name"`
  6. CreateBy string `xorm:"create_by" json:"create_by"`
  7. CreateTime int `xorm:"create_time" json:"create_time"`
  8. }
  9. func (GoodsAttributeKey) TableName() string {
  10. return "goods_attribute_key"
  11. }
  12. func GetGoodsAttributeTableName() string {
  13. return "goods_attribute_key"
  14. }