Browse Source

发起单独协单修改

anderx 1 year ago
parent
commit
7dbcfe85e8

File diff suppressed because it is too large
+ 8 - 20
src/main/java/com/goafanti/common/mapper/PublicReleaseMapper.xml


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

@@ -8,10 +8,10 @@ import java.util.Date;
  * 公出表(PublicRelease)实体类
  *
  * @author makejava
- * @since 2024-08-22 13:58:19
+ * @since 2024-08-22 15:44:03
  */
 public class PublicRelease implements Serializable {
-    private static final long serialVersionUID = -39921259134751252L;
+    private static final long serialVersionUID = 752677138514452213L;
 
     private Integer id;
 /**
@@ -95,7 +95,7 @@ public class PublicRelease implements Serializable {
      */
     private Integer updateStatus;
 /**
-     * 0否 1主公出 2协助公出
+     * 0否 1主公出 2协助公出 3技术助手 4单独协单
      */
     private Integer assist;
 /**
@@ -174,10 +174,6 @@ public class PublicRelease implements Serializable {
      * 协单审核 0非协单 1协单未审核 2协单部分审核 3协单完全审核 4协单驳回
      */
     private Integer assistProcess;
-/**
-     * 单独协单 0否 1是
-     */
-    private Integer alone;
 
 
     public Integer getId() {
@@ -508,13 +504,5 @@ public class PublicRelease implements Serializable {
         this.assistProcess = assistProcess;
     }
 
-    public Integer getAlone() {
-        return alone;
-    }
-
-    public void setAlone(Integer alone) {
-        this.alone = alone;
-    }
-
 }