21 lines
581 B
Go
21 lines
581 B
Go
package goldcfgmod
|
|
|
|
import "91porn-server/models/commod"
|
|
|
|
// web 返回模型
|
|
type DisConfRes struct {
|
|
Total int64 `json:"total" bson:"total"`
|
|
List []DiscountConfig `json:"list" bson:"list"`
|
|
}
|
|
|
|
type ListParam struct {
|
|
ListFilter
|
|
commod.Page
|
|
}
|
|
|
|
type ListFilter struct {
|
|
Type string `json:"type,omitempty" bson:"type,omitempty"` //充值方式
|
|
Amount int64 `json:"amount,omitempty" bson:"amount,omitempty"` //基础货币额度
|
|
TypeName string `json:"typeName,omitempty" bson:"typeName,omitempty"` //类型名称:支付宝,微信,代充
|
|
}
|