- package domain
- type GoodsAttributeValue struct {
- Id int64 `xorm:"id" json:"id"`
- AttributeId int64 `xorm:"attribute_id" json:"attribute_id"`
- AttributeValue string `xorm:"attribute_value" json:"attribute_value"`
- CreateBy string `xorm:"create_by" json:"create_by"`
- CreateTime int `xorm:"create_time" json:"create_time"`
- }
- func (GoodsAttributeValue) TableName() string {
- return "goods_attribute_value"
- }
- func GetGoodsAttributeValueTableName() string {
- return "goods_attribute_value"
- }
|