This commit is contained in:
suyl
2021-06-03 16:19:54 +08:00
parent 588f71abcf
commit 384aa5500a
3 changed files with 60 additions and 25 deletions

View File

@@ -1136,3 +1136,22 @@ func (c *StoreController) AuditStoreMap() {
return retVal, "", err
})
}
// @Title 查询商户申请授权
// @Description 查询商户申请授权
// @Param token header string true "认证token"
// @Param storeIDs query string false "门店IDs"
// @Param vendorIDs query string false "平台IDs"
// @Param auditStatuss query string false "审核状态s"
// @Param fromTime query string false "审核时间"
// @Param toTime query string false "审核时间"
// @Param offset query int false "门店列表起始序号以0开始缺省为0"
// @Param pageSize query int false "门店列表页大小缺省为50-1表示全部"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetStoreMapAudit [get]
func (c *StoreController) GetStoreMapAudit() {
c.callGetStoreMapAudit(func(params *tStoreGetStoreMapAuditParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}