ludc
2024-10-23 49f13be32b8c3a0742df021f13300f34d86c9b89
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,12 @@
     * @throws PLException
     */
    BaseResult getLogListByContion(LogQueryCriteriaDTO dto) throws PLException;
    /**
     * 操作用户获取
     */
    BaseResult getOperatingUsers() throws PLException;
    String exportLogs(LogQueryCriteriaDTO dto) throws PLException;
}