anderx пре 5 месеци
родитељ
комит
bdfa87e40f

+ 1 - 3
src/main/java/com/goafanti/common/dao/PublicReleaseMapper.java

@@ -17,7 +17,7 @@ import java.util.List;
  * 公出表(PublicRelease)表数据库访问层
  *
  * @author makejava
- * @since 2025-09-02 11:17:31
+ * @since 2025-09-02 11:22:46
  */
 public interface PublicReleaseMapper {
 
@@ -163,5 +163,3 @@ public interface PublicReleaseMapper {
     List<OutPublicAidUid> selectAllAidUid();
 }
 
-
-

+ 4 - 6
src/main/java/com/goafanti/common/mapper/PublicReleaseMapper.xml

@@ -44,7 +44,7 @@
         <result property="addressName" column="address_name" jdbcType="VARCHAR"/>
         <result property="assistProcess" column="assist_process" jdbcType="INTEGER"/>
         <result property="alone" column="alone" jdbcType="INTEGER"/>
-        <result property="processStatus" column="process_status" jdbcType="VARCHAR"/>
+        <result property="processStatus" column="process_status" jdbcType="INTEGER"/>
     </resultMap>
 
     <sql id="PublicReleaseAllSql">
@@ -281,7 +281,7 @@
             <if test="alone != null">
                 alone = #{alone},
             </if>
-            <if test="processStatus != null and processStatus != ''">
+            <if test="processStatus != null">
                 process_status = #{processStatus},
             </if>
         </set>
@@ -418,7 +418,7 @@
             <if test="alone != null">
                 and alone = #{alone}
             </if>
-            <if test="processStatus != null and processStatus != ''">
+            <if test="processStatus != null">
                 and process_status = #{processStatus}
             </if>
         </where>
@@ -555,7 +555,7 @@
             <if test="alone != null">
                 and alone = #{alone}
             </if>
-            <if test="processStatus != null and processStatus != ''">
+            <if test="processStatus != null">
                 and process_status = #{processStatus}
             </if>
         </where>
@@ -1256,5 +1256,3 @@
 
 </mapper>
 
-
-

+ 5 - 5
src/main/java/com/goafanti/common/model/PublicRelease.java

@@ -8,10 +8,10 @@ import java.util.Date;
  * 公出表(PublicRelease)实体类
  *
  * @author makejava
- * @since 2025-09-02 11:17:32
+ * @since 2025-09-02 11:22:46
  */
 public class PublicRelease implements Serializable {
-    private static final long serialVersionUID = -33690512750101589L;
+    private static final long serialVersionUID = 633295198365381700L;
 
     private Integer id;
     /**
@@ -177,7 +177,7 @@ public class PublicRelease implements Serializable {
     /**
      * 0=无需多级审核,1=1级审核,2=2级审核,4=完成审核
      */
-    private String processStatus;
+    private Integer processStatus;
 
 
     public Integer getId() {
@@ -508,11 +508,11 @@ public class PublicRelease implements Serializable {
         this.alone = alone;
     }
 
-    public String getProcessStatus() {
+    public Integer getProcessStatus() {
         return processStatus;
     }
 
-    public void setProcessStatus(String processStatus) {
+    public void setProcessStatus(Integer processStatus) {
         this.processStatus = processStatus;
     }