3
0
Fork 0

## 调整部分三方定时任务注释;

This commit is contained in:
cabbage 2025-06-09 10:37:05 +08:00
parent c5d6042246
commit 309d12a97c
2 changed files with 13 additions and 49 deletions

View File

@ -1,37 +1,20 @@
package com.hzs.report.stat;
import com.hzs.common.core.domain.R;
import com.hzs.common.core.enums.EApprovalBusiness;
import com.hzs.report.stat.dto.StatisticalLogDTO;
import com.hzs.system.sys.dto.ApprovalBusinessResultDTO;
import java.util.List;
/**
* @description: 统计分析
* @author: zhang jing
* @date: 2025/2/12 15:22
* @param:
* @return:
* 统计分析
**/
public interface IMemberReportServiceApi {
/**
* 定时任务批量处理统计会员以及伞下金额业绩盒数
**/
R<?> pushAmountBoxmethod();
/**
* @description: 定时任务批量处理统计会员以及伞下金额业绩盒数
* @author: zhang jing
* @date: 2025/2/13 10:41
* @param: []
* @return: com.hzs.common.core.domain.R
* 定时任务7天重算直推会员金额业绩盒数
**/
R pushAmountBoxmethod();
/**
* @description: 定时任务7天重算直推会员金额业绩盒数
* @author: zhang jing
* @date: 2025/2/13 10:41
* @param: [startDateStr, endDateStr]
* @return: com.hzs.common.core.domain.R
**/
R repeatPushAmountBoxmethod(String startDateStr, String endDateStr);
R<?> repeatPushAmountBoxmethod(String startDateStr, String endDateStr);
}

View File

@ -8,11 +8,7 @@ import org.apache.dubbo.config.annotation.DubboService;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @description: 统计分析相关dubbo服务
* @author: zhang jing
* @date: 2025/2/12 15:23
* @param:
* @return:
* 统计分析相关dubbo服务
**/
@Slf4j
@DubboService
@ -21,30 +17,15 @@ public class MemberReportServiceProvider implements IMemberReportServiceApi {
@Autowired
private MemberReportService iMemberReportService;
/**
* @description: 定时任务批量处理统计会员以及伞下金额业绩盒数
* @author: zhang jing
* @date: 2025/2/12 15:28
* @param: []
* @return: com.hzs.common.core.domain.R
**/
@Override
public R pushAmountBoxmethod() {
iMemberReportService.pushAmountBoxmethod();
return R.ok();
public R<?> pushAmountBoxmethod() {
iMemberReportService.pushAmountBoxmethod();
return R.ok();
}
/**
* @description: 定时任务7天重算直推会员金额业绩盒数
* @author: zhang jing
* @date: '2025/2/12' 16:10
* @param: [startDateStr, endDateStr]
* @return: com.hzs.common.core.domain.R
**/
@Override
public R repeatPushAmountBoxmethod(String startDateStr, String endDateStr) {
iMemberReportService.repeatPushAmountBoxmethod(startDateStr,endDateStr);
public R<?> repeatPushAmountBoxmethod(String startDateStr, String endDateStr) {
iMemberReportService.repeatPushAmountBoxmethod(startDateStr, endDateStr);
return R.ok();
}