新增查询门店会员

This commit is contained in:
chy
2025-07-04 16:47:45 +08:00
parent f0b13086dd
commit 7f23097976
39 changed files with 844 additions and 176 deletions

View File

@ -93,3 +93,15 @@ type DetailReq struct {
type DetailRes struct {
Id int64 `json:"id" dc:"门店ID"`
}
type StoreMemberLevelReq struct {
g.Meta `path:"/store/memberLevel" method:"get" tags:"Backend/Store" summary:"(系统、商户门店后台)门店会员等级"`
StoreId int64 `json:"storeId" dc:"门店ID"`
Page int `json:"page" v:"required" dc:"页数"`
Size int `json:"size" v:"required" dc:"每页数量"`
}
type StoreMemberLevelRes struct {
List interface{} `json:"list"`
Total int64 `json:"total"`
}