anderx 1 год назад
Родитель
Сommit
90f264d37a

Разница между файлами не показана из-за своего большого размера
+ 153 - 138
src/main/java/com/goafanti/common/mapper/BusinessProjectMapper.xml


+ 14 - 2
src/main/java/com/goafanti/common/model/BusinessProject.java

@@ -9,10 +9,10 @@ import java.util.Date;
  * (BusinessProject)实体类
  *
  * @author makejava
- * @since 2024-09-19 14:54:12
+ * @since 2025-01-03 10:53:15
  */
 public class BusinessProject implements Serializable {
-    private static final long serialVersionUID = -25621623846487956L;
+    private static final long serialVersionUID = -22679541116946568L;
 /**
      * 业务项目ID
      */
@@ -133,6 +133,10 @@ public class BusinessProject implements Serializable {
      * 完成状态 0否 1国家级,2=省级,3=市级
      */
     private Integer lvlType;
+/**
+     * 项目类型 0=其他,1=高新会员,2=简单会员,3=单边会员
+     */
+    private Integer projectType;
 
 
     public String getId() {
@@ -375,5 +379,13 @@ public class BusinessProject implements Serializable {
         this.lvlType = lvlType;
     }
 
+    public Integer getProjectType() {
+        return projectType;
+    }
+
+    public void setProjectType(Integer projectType) {
+        this.projectType = projectType;
+    }
+
 }