|
@@ -0,0 +1,42 @@
|
|
|
+package com.jeeplus.modules.projectFilingBatch.entity;
|
|
|
+
|
|
|
+import com.jeeplus.common.persistence.DataEntity;
|
|
|
+
|
|
|
+public class ProjectFilingBatchProInfo extends DataEntity<ProjectFilingBatchProInfo> {
|
|
|
+ private String proInfofilingBatch;
|
|
|
+ private String proId;
|
|
|
+ private String proInfoType;
|
|
|
+ private String proInfoName;
|
|
|
+
|
|
|
+ public String getProInfofilingBatch() {
|
|
|
+ return proInfofilingBatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProInfofilingBatch(String proInfofilingBatch) {
|
|
|
+ this.proInfofilingBatch = proInfofilingBatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProId() {
|
|
|
+ return proId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProId(String proId) {
|
|
|
+ this.proId = proId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProInfoType() {
|
|
|
+ return proInfoType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProInfoType(String proInfoType) {
|
|
|
+ this.proInfoType = proInfoType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProInfoName() {
|
|
|
+ return proInfoName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProInfoName(String proInfoName) {
|
|
|
+ this.proInfoName = proInfoName;
|
|
|
+ }
|
|
|
+}
|