Browse Source

fix:修改客户管理的基类,bo类,vo类

kgy 6 tháng trước cách đây
mục cha
commit
e3425eecc3

+ 4 - 0
ruoyi-modules/ruoyi-customerManagement/src/main/java/org/dromara/customerManagement/domain/Customer.java

@@ -58,4 +58,8 @@ public class Customer extends TenantEntity {
      * 账单结算类型
      */
     private String bill_type;
+    /**
+     * 总公司id
+     */
+    private Long pid;
 }

+ 4 - 0
ruoyi-modules/ruoyi-customerManagement/src/main/java/org/dromara/customerManagement/domain/bo/CustomerBo.java

@@ -57,4 +57,8 @@ public class CustomerBo extends BaseEntity {
      * 账单结算类型
      */
     private String bill_type;
+    /**
+     * 总公司id
+     */
+    private Long pid;
 }

+ 4 - 0
ruoyi-modules/ruoyi-customerManagement/src/main/java/org/dromara/customerManagement/domain/vo/CustomerVo.java

@@ -56,4 +56,8 @@ public class CustomerVo extends BaseEntity {
      * 账单结算类型
      */
     private String bill_type;
+    /**
+     * 总公司id
+     */
+    private Long pid;
 }