com.zznote.basecommon.service.TOperLogService Maven / Gradle / Ivy
The newest version!
package com.zznote.basecommon.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.zznote.basecommon.common.page.PageInfo;
import com.zznote.basecommon.common.page.PageQuery;
import com.zznote.basecommon.entity.system.TOperLog;
import java.util.List;
/**
* 操作日志记录
*
* @author zhangzhen
* @email [email protected]
* @date 2022-04-12 17:04:17
*/
public interface TOperLogService extends IService {
PageInfo selectPageOperLogList(TOperLog operLog, PageQuery pageQuery);
List selectOperLogList(TOperLog operLog);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy