新增根据网关账号获取门店信息

This commit is contained in:
chy
2025-07-08 19:25:20 +08:00
parent afa6b8bcd1
commit e3ee281c7f
9 changed files with 57 additions and 1 deletions

View File

@ -143,3 +143,12 @@ type SaveNetfeeSettingReq struct {
type SaveNetfeeSettingRes struct {
Success bool `json:"success" dc:"是否成功"`
}
type GetStoreInfoByNetbarReq struct {
g.Meta `path:"/store/getStoreInfoByNetbar" method:"get" tags:"PC/Store" summary:"(用户)根据网关账号获取门店信息"`
NetbarAccount string `json:"netbarAccount" v:"required" dc:"网关账号"`
}
type GetStoreInfoByNetbarRes struct {
Store interface{} `json:"store"`
}