Browse Source

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

chenjianhua 7 months ago
parent
commit
c612ae3c87
1 changed files with 2 additions and 2 deletions
  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">