update [重大更新]全业务 增加 接口文档注解 格式化代码

This commit is contained in:
疯狂的狮子li
2021-10-15 15:19:42 +08:00
parent bb43b2853d
commit a6fb88d74c
115 changed files with 2600 additions and 2868 deletions

View File

@ -9,7 +9,7 @@ import java.util.List;
/**
* 操作日志 服务层
*
* @author ruoyi
* @author Lion Li
*/
public interface ISysOperLogService extends IService<SysOperLog> {
@ -20,7 +20,7 @@ public interface ISysOperLogService extends IService<SysOperLog> {
*
* @param operLog 操作日志对象
*/
public void insertOperlog(SysOperLog operLog);
void insertOperlog(SysOperLog operLog);
/**
* 查询系统操作日志集合
@ -28,7 +28,7 @@ public interface ISysOperLogService extends IService<SysOperLog> {
* @param operLog 操作日志对象
* @return 操作日志集合
*/
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
List<SysOperLog> selectOperLogList(SysOperLog operLog);
/**
* 批量删除系统操作日志
@ -36,7 +36,7 @@ public interface ISysOperLogService extends IService<SysOperLog> {
* @param operIds 需要删除的操作日志ID
* @return 结果
*/
public int deleteOperLogByIds(Long[] operIds);
int deleteOperLogByIds(Long[] operIds);
/**
* 查询操作日志详细
@ -44,10 +44,10 @@ public interface ISysOperLogService extends IService<SysOperLog> {
* @param operId 操作ID
* @return 操作日志对象
*/
public SysOperLog selectOperLogById(Long operId);
SysOperLog selectOperLogById(Long operId);
/**
* 清空操作日志
*/
public void cleanOperLog();
void cleanOperLog();
}