[user3] 4 лет назад
Родитель
Сommit
8619529042

+ 73 - 0
src/main/java/com/jeeplus/modules/ruralprojectrecords/entity/RuralReportConsultant.java

@@ -0,0 +1,73 @@
+package com.jeeplus.modules.ruralprojectrecords.entity;
+
+import com.jeeplus.common.persistence.DataEntity;
+
+/**
+ * 新增报告-咨询员表
+ */
+public class RuralReportConsultant extends DataEntity<RuralReportConsultant> {
+
+    private String zixunyuanId;   //咨询员序号   自增长
+    private String zixunyuan;       //咨询员
+    private String zixunyuanName;       //咨询员(录入)
+    private String zhucezigezhID;  //注册/资格证号
+    private String major;           //专业
+    private String wordnr;          //本人复制内容
+    private String projectId;       //项目id
+
+    public String getZixunyuanId() {
+        return zixunyuanId;
+    }
+
+    public void setZixunyuanId(String zixunyuanId) {
+        this.zixunyuanId = zixunyuanId;
+    }
+
+    public String getZixunyuan() {
+        return zixunyuan;
+    }
+
+    public void setZixunyuan(String zixunyuan) {
+        this.zixunyuan = zixunyuan;
+    }
+
+    public String getZixunyuanName() {
+        return zixunyuanName;
+    }
+
+    public void setZixunyuanName(String zixunyuanName) {
+        this.zixunyuanName = zixunyuanName;
+    }
+
+    public String getZhucezigezhID() {
+        return zhucezigezhID;
+    }
+
+    public void setZhucezigezhID(String zhucezigezhID) {
+        this.zhucezigezhID = zhucezigezhID;
+    }
+
+    public String getMajor() {
+        return major;
+    }
+
+    public void setMajor(String major) {
+        this.major = major;
+    }
+
+    public String getWordnr() {
+        return wordnr;
+    }
+
+    public void setWordnr(String wordnr) {
+        this.wordnr = wordnr;
+    }
+
+    public String getProjectId() {
+        return projectId;
+    }
+
+    public void setProjectId(String projectId) {
+        this.projectId = projectId;
+    }
+}