新增跟进任务的消息类型,消息发送做调整

This commit is contained in:
zhangchenbiao
2023-08-17 10:59:23 +08:00
parent 38b42624a6
commit fdd5c3422b
3 changed files with 16 additions and 7 deletions

View File

@@ -60,6 +60,8 @@ public class TestController {
private HyPartnerTaskInfoLogDAO hyPartnerTaskInfoLogDAO;
@Resource
private OpenAreaService openAreaService;
@Resource
private FollowTaskService followTaskService;
@PostMapping("/post")
public ResponseResult<Boolean> get(@RequestBody List<TestRequest> testRequestList){
@@ -266,4 +268,10 @@ public class TestController {
}
return null;
}
@GetMapping("/followTaskAnHourAgoRemind")
public ResponseResult followTaskAnHourAgoRemind() {
followTaskService.followTaskAnHourAgoRemind();
return ResponseResult.success();
}
}