Browse Source

新增客户最后跟进列表

anderx 2 years ago
parent
commit
c75a6bb8ae

+ 10 - 1
src/main/java/com/goafanti/customer/controller/AdminCustomerApiController.java

@@ -1567,13 +1567,22 @@ public class AdminCustomerApiController extends BaseApiController{
 		return res;
 	}
 
+	/**
+	 * 客户最后跟进列表
+	 * @param in
+	 * @return
+	 */
 	@RequestMapping(value = "/selectUserLastSign",method = RequestMethod.GET)
 	public Result selectUserLastSign (InputSelectUserLastSignBo in){
 		Result  res =new Result();
 		res.setData(customerService.selectUserLastSign(in));
 		return res;
 	}
-
+	/**
+	 * 客户最后跟进列表导出
+	 * @param in
+	 * @return
+	 */
 	@RequestMapping(value = "/selectUserLastSign/export",method = RequestMethod.GET)
 	public Result selectUserLastSignExport (InputSelectUserLastSignBo in){
 		return customerService.selectUserLastSignExport(in);