|
@@ -95,6 +95,18 @@ public class TaRecommendCustomerController extends BaseController {
|
95
|
95
|
return taRecommendCustomerService.recommendCust(paramStr, openid);
|
96
|
96
|
}
|
97
|
97
|
|
|
98
|
+ /**
|
|
99
|
+ * 推荐客户
|
|
100
|
+ * @param paramStr
|
|
101
|
+ * @param request
|
|
102
|
+ * @return
|
|
103
|
+ */
|
|
104
|
+ @PostMapping("/wx/customer/report")
|
|
105
|
+ public ResponseBean reportCust(@RequestBody String paramStr, HttpServletRequest request) {
|
|
106
|
+ String openid = JWTUtils.getSubject(request);
|
|
107
|
+ return taRecommendCustomerService.reportCust(paramStr, openid);
|
|
108
|
+ }
|
|
109
|
+
|
98
|
110
|
@PostMapping("/wx/customer/recommend")
|
99
|
111
|
public ResponseBean getUnSignedCustomerList ( @RequestParam(value ="pageNumber",defaultValue = "1") Integer pageNumber,
|
100
|
112
|
@RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
|