ZeroLiYi 1 yıl önce
ebeveyn
işleme
fbb85d8dcd

+ 2 - 0
src/main/java/com/chinaitop/depot/rp/mapper/BusinessRpReportMapper.xml

@@ -30,6 +30,8 @@
30 30
         <result column="grainAreaName" property="grainAreaName" />
31 31
         <result column="form_warehouse_time" property="formWarehouseTime" />
32 32
         <result column="dwmc" property="dwmc" />
33
+        <result column="type" property="type" />
34
+
33 35
 
34 36
         <result column="rp_report_id" property="rpReportId" />
35 37
         <result column="org_id" property="orgId" />

+ 18 - 0
src/main/java/com/chinaitop/depot/rp/model/vo/BusinessRpReportVO.java

@@ -48,6 +48,24 @@ public class BusinessRpReportVO extends BusinessRpOutboundVO{
48 48
     @ApiModelProperty(value = "计划年度")
49 49
     private Year planYear;
50 50
 
51
+    private  Integer type;
52
+
53
+    public Integer getType() {
54
+        return type;
55
+    }
56
+
57
+    public void setType(Integer type) {
58
+        this.type = type;
59
+    }
60
+
61
+    public String getDwmc() {
62
+        return dwmc;
63
+    }
64
+
65
+    public void setDwmc(String dwmc) {
66
+        this.dwmc = dwmc;
67
+    }
68
+
51 69
     @ApiModelProperty(value = "申请人")
52 70
     private String applicant;
53 71
     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")