MonthTaskService.java 762 Bytes
Newer Older
1
package cn.wisenergy.service.app;
licc's avatar
licc committed
2 3 4

import cn.wisenergy.common.utils.R;

5 6
/**
 * @author 86187
7 8 9
 * @ Description: 月定时任务接口定义
 * @ Author     : 86187
 * @ Date       : 2021/3/10 10:22
10 11
 */
public interface MonthTaskService {
licc's avatar
licc committed
12 13 14 15


    /**
     * 收益和业绩统计(月度肥料)-月任务
16
     *
licc's avatar
licc committed
17 18
     * @return true or false
     */
licc's avatar
licc committed
19
    R<Boolean> performanceCount();
licc's avatar
licc committed
20 21 22 23 24 25 26 27 28 29 30

    /**
     * 进步奖收益统计(最大进步奖) -月任务
     *
     * @return true or false
     */
    R<Boolean> progressPrizeCount();

    /**
     * 账户表镜像---每月更新一次,保存上一个的数据
     */
31 32 33 34 35 36 37 38
    void mirrorImage();

    /**
     * 运营中心补贴
     *
     * @return true or false
     */
    R<Boolean> runCenterSubsidy();
39
}