1
0
DESKTOP-2K9OVK9\siwei 4 هفته پیش
والد
کامیت
c7ec891020

+ 6 - 1
siwei-modules/siwei-apply/src/main/java/com/siwei/apply/domain/vo/CadastreFileFilterVo.java

@@ -28,10 +28,15 @@ public class CadastreFileFilterVo {
     private String storageEndTime;
     private String storageEndTime;
 
 
 
 
-
     /**
     /**
      * 状态
      * 状态
      */
      */
+    private String status;
+
+
+    /**
+     * 更新情况
+     */
     private String readStatus;
     private String readStatus;
 
 
     // 分页参数
     // 分页参数

+ 7 - 0
siwei-modules/siwei-apply/src/main/resources/mapper/cadastre/CadastreFileMapper.xml

@@ -240,6 +240,10 @@
             <if test="readStatus != null and readStatus != ''">
             <if test="readStatus != null and readStatus != ''">
                 AND read_status = #{readStatus}
                 AND read_status = #{readStatus}
             </if>
             </if>
+            <if test="status != null and status != ''">
+                AND status = #{status}
+            </if>
+
         </where>
         </where>
         ORDER BY upload_time DESC
         ORDER BY upload_time DESC
         LIMIT #{pageSize} OFFSET #{offset}
         LIMIT #{pageSize} OFFSET #{offset}
@@ -267,6 +271,9 @@
             <if test="readStatus != null and readStatus != ''">
             <if test="readStatus != null and readStatus != ''">
                 AND read_status = #{readStatus}
                 AND read_status = #{readStatus}
             </if>
             </if>
+            <if test="status != null and status != ''">
+                AND status = #{status}
+            </if>
         </where>
         </where>
     </select>
     </select>