scr 8 жил өмнө
parent
commit
32cb3e91de

+ 13 - 0
src/main/java/com/uas/erp/schedular/finance/domain/Apply.java

@@ -85,6 +85,11 @@ public class Apply implements Serializable {
      */
     private CustInfo customerInfo;
 
+    /**
+     * 企业名
+     */
+    private String fa_enname;
+
     /**
      * 附件表
      *
@@ -211,4 +216,12 @@ public class Apply implements Serializable {
     public void setFauu(Long fauu) {
         this.fauu = fauu;
     }
+
+    public String getFa_enname() {
+        return fa_enname;
+    }
+
+    public void setFa_enname(String fa_enname) {
+        this.fa_enname = fa_enname;
+    }
 }

+ 5 - 5
src/main/java/com/uas/erp/schedular/finance/domain/CustInfo.java

@@ -80,7 +80,7 @@ public class CustInfo {
     /**
      * 公司注册地
      */
-    private String cu_redaddcode;
+    private String cu_regadd;
     /**
      * 办公地址
      */
@@ -286,12 +286,12 @@ public class CustInfo {
         this.cu_paidincapital = cu_paidincapital;
     }
 
-    public String getCu_redaddcode() {
-        return cu_redaddcode;
+    public String getCu_regadd() {
+        return cu_regadd;
     }
 
-    public void setCu_redaddcode(String cu_redaddcode) {
-        this.cu_redaddcode = cu_redaddcode;
+    public void setCu_regadd(String cu_regadd) {
+        this.cu_regadd = cu_regadd;
     }
 
     public String getCu_officeadd() {

+ 53 - 0
src/main/java/com/uas/erp/schedular/finance/domain/FinanceConditionInfo.java

@@ -43,6 +43,27 @@ public class FinanceConditionInfo {
      */
     private String fc_otharremark;
 
+    /**
+     * 截止时间,年月的拼接,字段名按UAS表来写,不是手误
+     */
+    private Integer yeatmonth;
+
+    /**
+     * 截止至XX年
+     */
+    private Integer year;
+
+    /**
+     * 截止至XX月
+     */
+    private Integer month;
+
+    /**
+     * 余额
+     */
+    private Long fc_arbalance;
+
+
     public Long getId() {
         return id;
     }
@@ -99,6 +120,38 @@ public class FinanceConditionInfo {
         this.fc_otharremark = fc_otharremark;
     }
 
+    public Integer getYeatmonth() {
+        return yeatmonth;
+    }
+
+    public void setYeatmonth(Integer yeatmonth) {
+        this.yeatmonth = yeatmonth;
+    }
+
+    public Integer getYear() {
+        return year;
+    }
+
+    public void setYear(Integer year) {
+        this.year = year;
+    }
+
+    public Integer getMonth() {
+        return month;
+    }
+
+    public void setMonth(Integer month) {
+        this.month = month;
+    }
+
+    public Long getFc_arbalance() {
+        return fc_arbalance;
+    }
+
+    public void setFc_arbalance(Long fc_arbalance) {
+        this.fc_arbalance = fc_arbalance;
+    }
+
     public FinanceConditionInfo() {
 
     }