代码说明

This commit is contained in:
lijiazhuo
2025-10-14 14:10:49 +08:00
parent 54f54bf0fb
commit ce92a3ed66

View File

@ -8,31 +8,43 @@
项目主要为推送以及定时任务: 项目主要为推送以及定时任务:
以下为相关接口: 以下为相关接口:
@PostMapping("/dpapp") @PostMapping("/dpapp")
此接口为dpapp的法大大合同
@PostMapping("/count") @PostMapping("/count")
此接口为与人员统计
@PostMapping("/count1") @PostMapping("/count1")
此接口为与数量统计
@PostMapping("/geren") @PostMapping("/geren")
此接口给人员的个人奖励
@PostMapping("/gerentype") @PostMapping("/gerentype")
此接口为人员奖励类型
@PostMapping("/nostatus") @PostMapping("/nostatus")
此接口为筛选人员无状态
@PostMapping("/nostatu") @PostMapping("/nostatu")
此接口为筛选人员有状态
@PostMapping("/useridtime") @PostMapping("/useridtime")
此接口为人员id的创建时间
@PostMapping("/selectmax") @PostMapping("/selectmax")
此接口为查询奖励的最大值
@PostMapping("/reward") @PostMapping("/reward")
此接口为奖励发放
@PostMapping("/id") @PostMapping("/id")
此接口获取人员id
@PostMapping("/yingxiao") @PostMapping("/yingxiao")
此接口为营销人员接口
@PostMapping("/zuofei") @PostMapping("/zuofei")
此接口为法大大合同作废接口
@PostMapping("/test") @PostMapping("/test")
此接口为调用海报接口
定时任务: 定时任务:
@Scheduled(fixedRate = 3600000) @Scheduled(fixedRate = 3600000)
public void main11() throws Exception {
。。。。。} 此定时任务为定时检测法大大合同完成状态并写入纪元
@Scheduled(cron = "0 0 1 * * ?") @Scheduled(cron = "0 0 1 * * ?")
public void maina() { 此定时任务为定时下载合同到纪元
。。。。。。。。。。
}