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.
16 lines
752 B
16 lines
752 B
9 months ago
|
package response
|
||
|
|
||
|
type StoreInfoItem struct {
|
||
|
ID uint `gorm:"AUTO_INCREMENT;PRIMARY_KEY;" json:"id"` // 主键ID
|
||
|
StoreNo string `json:"store_no"` // 店铺编号
|
||
|
Type int `json:"type"` // 1:个人店铺
|
||
|
Email string `json:"email"` // 店铺联系email(注册账号email)
|
||
|
|
||
|
ValidMissionNum int64 `gorm:"-" json:"valid_mission_num"` // 有效任务数
|
||
|
GoodsNum int64 `gorm:"-" json:"goods_num"`
|
||
|
Phone string `json:"phone"`
|
||
|
Balance float64 `json:"balance"` // 佣金
|
||
|
TransitBalance float64 `json:"transit_balance"` // 在途佣金
|
||
|
PapaylName string `json:"papayl_name"` // paypal账号
|
||
|
}
|