This commit is contained in:
suyl
2021-05-19 08:51:37 +08:00
parent 86513089ae
commit ec0df984ab
5 changed files with 62 additions and 2 deletions

View File

@@ -137,3 +137,19 @@ func (c *ReportController) GetStoreManageState() {
return retVal, "", err
})
}
// @Title 统计会员信息
// @Description 统计会员信息
// @Param token header string true "认证token"
// @Param vendorID query int false "平台ID"
// @Param keyword 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 /UserMemberReport [get]
func (c *ReportController) UserMemberReport() {
c.callUserMemberReport(func(params *tReportUserMemberReportParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}