## 调整部分三方定时任务注释;
This commit is contained in:
parent
c8d446ad8b
commit
34e86d1835
|
@ -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);
|
||||
|
||||
}
|
||||
|
|
|
@ -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,29 +17,14 @@ 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() {
|
||||
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) {
|
||||
public R<?> repeatPushAmountBoxmethod(String startDateStr, String endDateStr) {
|
||||
iMemberReportService.repeatPushAmountBoxmethod(startDateStr, endDateStr);
|
||||
return R.ok();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue