Преглед изворни кода

fix: 缺失展示页面放开备注信息的过滤

chenjianhua пре 7 месеци
родитељ
комит
33defc2c73
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      service-base/src/main/resources/mapper/DeletionInfoMapper.xml

+ 2 - 2
service-base/src/main/resources/mapper/DeletionInfoMapper.xml

@@ -186,13 +186,13 @@
     <select id="searchFundDeletionList" resultMap="BaseMap"
             parameterType="com.simuwang.base.pojo.dto.query.FundDeletionPageQuery">
         select id,fund_id,deletion_type,deletion_date,remark,isvalid,creatorid,updaterid,createtime,updatetime
-        from PPW_EMAIL.deletion_info where isvalid=1 and fund_id=#{fundId} and remark is null
+        from PPW_EMAIL.deletion_info where isvalid=1 and fund_id=#{fundId}
         limit #{offset},#{pageSize}
     </select>
     <select id="countFundDeletionList" resultType="java.lang.Long"
             parameterType="com.simuwang.base.pojo.dto.query.FundDeletionPageQuery">
         select count(1)
-            from PPW_EMAIL.deletion_info where isvalid=1 and fund_id=#{fundId} and remark is null
+            from PPW_EMAIL.deletion_info where isvalid=1 and fund_id=#{fundId}
     </select>
     <select id="selectFundDeletionInfoVOList" resultType="com.simuwang.base.pojo.dos.FundDeletionInfoDO"
             parameterType="java.util.List">