1、用户管理查看提示接口异常信息

2、业务配置界面展示log_total
3、修复实时报表导出部分字段转成日期型及来函信息展示is_valid为1或3的数据
4、日志界面link_id添加字典处理
This commit is contained in:
leijun
2018-12-03 17:42:35 +08:00
parent 1b899845e2
commit d17af17685
66 changed files with 282 additions and 111 deletions

View File

@@ -26,6 +26,8 @@ public interface RequestInfoDao extends CrudDao {
void delete(@Param("id") Long id);
String getRequestTitleById(@Param("id")Long id);
List<RequestInfo> findAllLwhhList();
}

View File

@@ -218,6 +218,13 @@
from request_info
</select>
<select id="findAllLwhhList" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from request_info
where is_audit =1 or is_audit=3
</select>
<select id="getRequestTitleById" resultType="string">
select request_title requestTitle from request_info where id=#{id}
</select>