- package domain
- type GoodsAttributeKey struct {
- Id int64 `xorm:"id" json:"id"`
- CategoryId int64 `xorm:"category_id" json:"category_id"`
- AttributeName string `xorm:"attribute_name" json:"attribute_name"`
- CreateBy string `xorm:"create_by" json:"create_by"`
- CreateTime int `xorm:"create_time" json:"create_time"`
- }
- func (GoodsAttributeKey) TableName() string {
- return "goods_attribute_key"
- }
- func GetGoodsAttributeTableName() string {
- return "goods_attribute_key"
- }
|