| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | package com.moral.api.service; |  |   |  | import com.moral.api.entity.HistoryMonthly; |  | import com.baomidou.mybatisplus.extension.service.IService; |  |   |  | /** |  |  * <p> |  |  * 月数据 服务类 |  |  * </p> |  |  * |  |  * @author moral |  |  * @since 2021-07-01 |  |  */ |  | public interface HistoryMonthlyService extends IService<HistoryMonthly> { |  |   |  |     //月数据统计 |  |     void insertHistoryMonthly(); |  |   |  | } | 
 |