日照智慧社区接口服务
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.
 
 
 
 
 

45 lines
1.2 KiB

package com.epmet.service;
import com.epmet.commons.tools.page.PageData;
import com.epmet.dto.region.LogOperationResultDTO;
import com.epmet.entity.LogOperationEntity;
import java.util.List;
/**
* 操作日志
*/
public interface LogOperationService {
/**
* @Description 记录日志
* @return
* @author wxz
* @date 2021.06.07 21:56
*/
void log(LogOperationEntity msg);
/**
* @Description 查询操作日志 列表
* @return
* @author wxz
* @date 2021.06.07 21:56
*/
List<LogOperationResultDTO> listOperationLogs(String condition, String customerId, Integer pageNo, Integer pageSize);
/**
* 数字社区-操作记录
* @param loginUserCustomerId
* @param startTime
* @param endTime
* @param operatorName
* @param operatorMobile
* @return
*/
PageData<LogOperationResultDTO> page(String loginUserCustomerId,
String startTime,
String endTime,
String operatorName,
String operatorMobile,
Integer pageNo, Integer pageSize,String category);
}