Files
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

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"` //类型名称:支付宝,微信,代充
}