新增获取门店网费奖励信息列表

This commit is contained in:
chy
2025-07-05 16:47:24 +08:00
parent 6bc186242b
commit e71bbc6587
10 changed files with 118 additions and 5 deletions

View File

@ -30,6 +30,11 @@ type ListRes struct {
Total int `json:"total" dc:"总数"`
}
type ListInternetChargeRes struct {
List interface{} `json:"list" dc:"奖励列表"`
Total int `json:"total" dc:"总数"`
}
type CreateReq struct {
g.Meta `path:"/reward" method:"post" tags:"Backend/Reward" summary:"(系统、商户、门店后台)创建奖励"`
StoreId int64 `json:"storeId" dc:"门店ID"`
@ -322,3 +327,17 @@ type NetfeeCallbackReq struct {
type NetfeeCallbackRes struct {
Success bool `json:"success" dc:"是否成功"`
}
type NetfeeListReq struct {
g.Meta `path:"/reward/netfeeList" method:"get" tags:"Backend/Reward" summary:"(门店,商户)获取门店网费奖励信息列表"`
Page int `json:"page"`
Size int `json:"size"`
StoreId int64 `json:"storeId" v:"required#门店 id不能为空"`
StartTime *gtime.Time `json:"startTime"`
EndTime *gtime.Time `json:"endTime"`
}
type NetfeeListRes struct {
List interface{} `json:"list"`
Total int `json:"total"`
}