You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
672 B
29 lines
672 B
4 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.commons.rocketmq.messages.OperationLogMQMsg;
|
||
|
import com.epmet.dto.region.LogOperationResultDTO;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 操作日志
|
||
|
*/
|
||
|
public interface LogOperationService {
|
||
|
|
||
|
/**
|
||
|
* @Description 记录日志
|
||
|
* @return
|
||
|
* @author wxz
|
||
|
* @date 2021.06.07 21:56
|
||
|
*/
|
||
|
void log(OperationLogMQMsg msg, String category);
|
||
|
|
||
|
/**
|
||
|
* @Description 查询操作日志 列表
|
||
|
* @return
|
||
|
* @author wxz
|
||
|
* @date 2021.06.07 21:56
|
||
|
*/
|
||
|
List<LogOperationResultDTO> listOperationLogs(String operatorName, String operatorMobile, String customerId, Integer pageNo, Integer pageSize);
|
||
|
}
|