You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
279 B

package good_category_re
func (GoodCategoryRe) TableName() string {
return "good_category_re"
}
// GoodCategoryRe 结构体表示产品信息
type GoodCategoryRe struct {
Id int64 `json:"id"`
GoodsId int64 `json:"goodsId"`
CategoryId int64 `json:"categoryId"`
}