#
luxiaotao1123
2024-03-25 9d4f7226888a9daa9a8967045f91ed4926a96309
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.common.sys.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.common.sys.entity.OperateLog;
 
import java.util.List;
import java.util.Map;
 
public interface OperateLogService extends IService<OperateLog> {
 
    int selectCountByCurrentWeek();
 
    List<Map<String, Object>> getReport(Integer year, Integer month);
 
}