- package entity
- import "gopkg.in/guregu/null.v3"
- type ProductCategory struct {
- Id int `db:"id"`
- ParentId int `db:"parent_id"`
- Name string `db:"name"`
- IsLeaf int `db:"is_leaf"`
- SortNo int `db:"sort_no"`
- Pictrue string `db:"picture"`
- SubTitle null.String `db:"sub_title"`
- CreatedAt string `db:"created_at"`
- Link string `db:"link"`
- Icon string `db:"icon"`
- }
|