Browse Source

fix: 修复路线名称字段名

master_tdsql
hxh 10 months ago
parent
commit
1b5ab4ac8d
  1. 2
      shuili-system/src/main/java/com/kms/yg/df/mapper/BsSgcDfSafeJbxxMapper.java
  2. 2
      shuili-system/src/main/java/com/kms/yxgh/df/mapper/DfCheckingLineMapper.java

2
shuili-system/src/main/java/com/kms/yg/df/mapper/BsSgcDfSafeJbxxMapper.java

@ -173,7 +173,7 @@ public interface BsSgcDfSafeJbxxMapper extends BaseMapper<BsSgcDfSafeJbxx> {
"</if>", "</if>",
"and EXISTS (SELECT 1 FROM bs_sgc_df_xslx line WHERE line.dike_code = df.dike_code ", "and EXISTS (SELECT 1 FROM bs_sgc_df_xslx line WHERE line.dike_code = df.dike_code ",
"<if test='dto.lineName != null and dto.lineName != \"\"'>", "<if test='dto.lineName != null and dto.lineName != \"\"'>",
"and line.line_name like concat('%', #{dto.lineName}, '%') ", "and line.name like concat('%', #{dto.lineName}, '%') ",
"</if>", "</if>",
"<if test='dto.type != null and dto.type != \"\"'>", "<if test='dto.type != null and dto.type != \"\"'>",
"and line.type = #{dto.type} ", "and line.type = #{dto.type} ",

2
shuili-system/src/main/java/com/kms/yxgh/df/mapper/DfCheckingLineMapper.java

@ -46,7 +46,7 @@ public interface DfCheckingLineMapper extends BaseMapper<DfCheckingLine> {
"and df.adcd like concat(#{dto.adcd}, '%') ", "and df.adcd like concat(#{dto.adcd}, '%') ",
"</if>", "</if>",
"<if test='dto.lineName != null and dto.lineName != \"\"'>", "<if test='dto.lineName != null and dto.lineName != \"\"'>",
"and line.line_name like concat('%', #{dto.lineName}, '%') ", "and line.name like concat('%', #{dto.lineName}, '%') ",
"</if>", "</if>",
"<if test='dto.type != null and dto.type != \"\"'>", "<if test='dto.type != null and dto.type != \"\"'>",
"and line.type = #{dto.type} ", "and line.type = #{dto.type} ",

Loading…
Cancel
Save