## 调整部分三方定时任务注释;
This commit is contained in:
parent
c5d6042246
commit
309d12a97c
|
@ -1,37 +1,20 @@
|
||||||
package com.hzs.report.stat;
|
package com.hzs.report.stat;
|
||||||
|
|
||||||
import com.hzs.common.core.domain.R;
|
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 {
|
public interface IMemberReportServiceApi {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 定时任务批量处理统计会员以及伞下金额业绩盒数
|
||||||
|
**/
|
||||||
|
R<?> pushAmountBoxmethod();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description: 定时任务批量处理统计会员以及伞下金额业绩盒数
|
* 定时任务7天重算直推会员金额业绩盒数
|
||||||
* @author: zhang jing
|
|
||||||
* @date: 2025/2/13 10:41
|
|
||||||
* @param: []
|
|
||||||
* @return: com.hzs.common.core.domain.R
|
|
||||||
**/
|
**/
|
||||||
R pushAmountBoxmethod();
|
R<?> repeatPushAmountBoxmethod(String startDateStr, String endDateStr);
|
||||||
/**
|
|
||||||
* @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);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,11 +8,7 @@ import org.apache.dubbo.config.annotation.DubboService;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description: 统计分析相关dubbo服务
|
* 统计分析相关dubbo服务
|
||||||
* @author: zhang jing
|
|
||||||
* @date: 2025/2/12 15:23
|
|
||||||
* @param:
|
|
||||||
* @return:
|
|
||||||
**/
|
**/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@DubboService
|
@DubboService
|
||||||
|
@ -21,30 +17,15 @@ public class MemberReportServiceProvider implements IMemberReportServiceApi {
|
||||||
@Autowired
|
@Autowired
|
||||||
private MemberReportService iMemberReportService;
|
private MemberReportService iMemberReportService;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @description: 定时任务批量处理统计会员以及伞下金额业绩盒数
|
|
||||||
* @author: zhang jing
|
|
||||||
* @date: 2025/2/12 15:28
|
|
||||||
* @param: []
|
|
||||||
* @return: com.hzs.common.core.domain.R
|
|
||||||
**/
|
|
||||||
@Override
|
@Override
|
||||||
public R pushAmountBoxmethod() {
|
public R<?> pushAmountBoxmethod() {
|
||||||
iMemberReportService.pushAmountBoxmethod();
|
iMemberReportService.pushAmountBoxmethod();
|
||||||
return R.ok();
|
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
|
@Override
|
||||||
public R repeatPushAmountBoxmethod(String startDateStr, String endDateStr) {
|
public R<?> repeatPushAmountBoxmethod(String startDateStr, String endDateStr) {
|
||||||
iMemberReportService.repeatPushAmountBoxmethod(startDateStr,endDateStr);
|
iMemberReportService.repeatPushAmountBoxmethod(startDateStr, endDateStr);
|
||||||
return R.ok();
|
return R.ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue