#
cp
1 天以前 59fbaf58a71992995c84a09ad46c2a2a60c661a0
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);
 
}