123456789101112131415161718 |
- package model
- type Category struct {
- Id int64 `db:"id"`
- Name string `db:"name"`
- Pic string `db:"pic"`
- }
- type CategoryJson struct {
- Name string `json:"name"`
- Pic string `json:"pic"`
- }
- type CategoryOfGoods struct {
- Id int64 `db:"id"`
- GoodsId int64 `db:"goods_id"`
- CategoryId int64 `db:"category_id"`
- }
|