17 lines
415 B
Go
17 lines
415 B
Go
package productmod
|
|
|
|
type VipPositionList struct {
|
|
ShowType int64 `json:"showType"` //展示样式
|
|
Position string `json:"position"`
|
|
List []Product `json:"list"`
|
|
}
|
|
|
|
type RespVipInfoList struct {
|
|
List []ProductList `json:"list"`
|
|
}
|
|
|
|
type ProductList struct {
|
|
ID string `bson:"id" json:"id"` // 会员卡ID
|
|
Name string `bson:"productName" json:"productName" ` // 会员卡名字
|
|
}
|