|
@@ -92,14 +92,15 @@ public class KuaishouPromoterController extends BaseController {
|
|
|
@ApiParam("媒体") @RequestParam(value = "mediaId", required = false) String mediaId,
|
|
|
@ApiParam("排序参数") @RequestParam(value = "parameter", required = false) String parameter,
|
|
|
@ApiParam("正序倒叙") @RequestParam(value = "orderBy", required = false) String orderBy,
|
|
|
- @ApiParam("绑定人") @RequestParam(value = "bdUserId", required = false) Long bdUserId
|
|
|
+ @ApiParam("绑定人") @RequestParam(value = "bdUserId", required = false) Long bdUserId,
|
|
|
+ @ApiParam("地址筛选") @RequestParam(value = "searchPhone", required = false) Integer searchPhone
|
|
|
|
|
|
) {
|
|
|
|
|
|
if (Check.isNotNull(promoterId)) {
|
|
|
promoterId = promoterId.trim();
|
|
|
}
|
|
|
- List<KuaishouPromoter> list = kuaishouPromoterService.selectKuaishouPromoterList(userId, promoterId, promoterNickName, mediaId, parameter, orderBy, bdUserId);
|
|
|
+ List<KuaishouPromoter> list = kuaishouPromoterService.selectKuaishouPromoterList(userId, promoterId, promoterNickName, mediaId, parameter, orderBy, bdUserId,searchPhone);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
@@ -151,9 +152,9 @@ public class KuaishouPromoterController extends BaseController {
|
|
|
public JSONObject jyExpertBusiness() {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
List<JSONObject> list = kuaishouPromoterService.jyExpertBusiness();
|
|
|
- jsonObject.put("code",200);
|
|
|
- jsonObject.put("success",true);
|
|
|
- jsonObject.put("data",list);
|
|
|
+ jsonObject.put("code", 200);
|
|
|
+ jsonObject.put("success", true);
|
|
|
+ jsonObject.put("data", list);
|
|
|
return jsonObject;
|
|
|
}
|
|
|
|
|
@@ -164,9 +165,9 @@ public class KuaishouPromoterController extends BaseController {
|
|
|
public JSONObject jyExpertMentorList() {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
List<JSONObject> list = kuaishouPromoterService.jyExpertMentorList();
|
|
|
- jsonObject.put("code",200);
|
|
|
- jsonObject.put("success",true);
|
|
|
- jsonObject.put("data",list);
|
|
|
+ jsonObject.put("code", 200);
|
|
|
+ jsonObject.put("success", true);
|
|
|
+ jsonObject.put("data", list);
|
|
|
return jsonObject;
|
|
|
}
|
|
|
|