| | |
| | | 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); |
| | | |
| | | } |
| | | 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);
|
| | |
|
| | | }
|