| | |
| | | orderProcessService.fanli();
|
| | | }
|
| | |
|
| | | // 每月25号9点执行返利
|
| | | // @Scheduled(cron = "0 0 9 25 * ? ")
|
| | | @XxlJob("fanliInvaiteAndShareHandler")
|
| | | public ReturnT<String> fanliInvaiteAndShareHandler(String param) throws Exception {
|
| | | if (StringUtil.isNullOrEmpty(param))
|
| | | orderProcessService.fanliInvaiteAndShare();
|
| | | else
|
| | | orderProcessService.fanliInvaiteAndShare(Long.parseLong(param));
|
| | | return ReturnT.SUCCESS;
|
| | | }
|
| | |
|
| | | // 团队奖励到账
|
| | | @XxlJob("fanliOrderTeamRewardHandler")
|
| | | public ReturnT<String> fanliOrderTeamRewardHandler(String param) throws Exception {
|
| | | if (StringUtil.isNullOrEmpty(param))
|
| | | orderProcessService.fanliOrderTeamReward();
|
| | | else {
|
| | | orderProcessService.fanliOrderTeamReward(Long.parseLong(param));
|
| | | }
|
| | |
|
| | | return ReturnT.SUCCESS;
|
| | | }
|
| | |
|
| | | // 维权订单处理-处理最近60天的
|
| | | // 30分钟一次
|
| | | @Scheduled(cron = "0 0/30 * * * ? ")
|