Pu Zhibing
22 小时以前 4fcd1f89d42fef05fb6592d30f168f3bfc6728d6
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.integration.mongodb.service;
 
import com.ruoyi.integration.api.model.SetupBillingModel;
import com.ruoyi.integration.mongodb.base.BaseService;
 
public interface SetupBillingModelService extends BaseService<SetupBillingModel> {
    
    /**
     * 定时任务删除2个月前的数据
     */
    void taskDelete();
}