ludc
2025-01-16 68fd566d21b3efc3a670a5295289b1801f5a4155
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/LogBasicServiceI.java
@@ -16,18 +16,21 @@
     * @return 查询结果
     */
    BaseResult getPeroid() throws PLException;
    /**
     * 保存期限设置
     * period 期限编码
     * @return 保存结果
     */
    BaseResult savePeriod(String period) throws PLException;
    /**
     * 删除日志
     * period 期限编码
     * @return 保存结果
     */
    BaseResult deleteLog(String deleteDate) throws PLException;
    /**
     * 查询日志
     * @param dto 查询条件传输对象
@@ -35,8 +38,17 @@
     * @throws PLException
     */
    BaseResult getLogListByContion(LogQueryCriteriaDTO dto) throws PLException;
    /**
     * 操作用户获取
     */
    BaseResult getOperatingUsers() throws PLException;
    /**
     * 导出日志
     * @param dto 导出的文件名
     * @return
     */
    String exportLogs(LogQueryCriteriaDTO dto) throws PLException;
}