GoodsAttributeValue.go 520 B

12345678910111213141516
  1. package domain
  2. type GoodsAttributeValue struct {
  3. Id int64 `xorm:"id" json:"id"`
  4. AttributeId int64 `xorm:"attribute_id" json:"attribute_id"`
  5. AttributeValue string `xorm:"attribute_value" json:"attribute_value"`
  6. CreateBy string `xorm:"create_by" json:"create_by"`
  7. CreateTime int `xorm:"create_time" json:"create_time"`
  8. }
  9. func (GoodsAttributeValue) TableName() string {
  10. return "goods_attribute_value"
  11. }
  12. func GetGoodsAttributeValueTableName() string {
  13. return "goods_attribute_value"
  14. }