From 78c1fc40a5b5e4ef69b758d2d1a7102f054d6ece Mon Sep 17 00:00:00 2001 From: chuang <994001556@qq.com> Date: Wed, 15 Feb 2023 18:11:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E4=BF=A1=E6=81=AF=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../model/customer/CustomerListVO.java | 77 ++++++++++++++++--- 1 file changed, 66 insertions(+), 11 deletions(-) diff --git a/SC-boot/linkage-scm/src/main/java/jnpf/customer/model/customer/CustomerListVO.java b/SC-boot/linkage-scm/src/main/java/jnpf/customer/model/customer/CustomerListVO.java index 8727c147..38e5bf08 100644 --- a/SC-boot/linkage-scm/src/main/java/jnpf/customer/model/customer/CustomerListVO.java +++ b/SC-boot/linkage-scm/src/main/java/jnpf/customer/model/customer/CustomerListVO.java @@ -3,19 +3,19 @@ package jnpf.customer.model.customer; -import lombok.Data; -import java.sql.Time; -import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Data; + import java.math.BigDecimal; +import java.util.Date; /** * * * @版本: V3.2.0 * @版权: LINKAGE-BOOT * @作者: LINKAGE-BOOT研发团队 - * @日期: 2023-02-13 + * @日期: 2023-02-15 */ @Data public class CustomerListVO{ @@ -34,14 +34,14 @@ public class CustomerListVO{ private String supplierNm; - /** 公司名称 **/ + /** 公司ID **/ @JsonProperty("orgId") private String orgId; - /** 联系人 **/ - @JsonProperty("contactName") - private String contactName; + /** 纳税编号 **/ + @JsonProperty("vatRegistrationNum") + private String vatRegistrationNum; /** 客户等级 **/ @@ -49,14 +49,29 @@ public class CustomerListVO{ private String customerLevel; + /** 联系人 **/ + @JsonProperty("contactName") + private String contactName; + + + /** 国家 **/ + @JsonProperty("country") + private String country; + + /** 电话 **/ @JsonProperty("contactPhone") private String contactPhone; - /** 地址 **/ - @JsonProperty("address") - private String address; + /** 省市县 **/ + @JsonProperty("province") + private String province; + + + /** 开户行 **/ + @JsonProperty("bank") + private String bank; /** 是否启用 **/ @@ -64,4 +79,44 @@ public class CustomerListVO{ private String status; + /** 银行账号 **/ + @JsonProperty("bankAccount") + private String bankAccount; + + + /** 企业性质 **/ + @JsonProperty("enterprise") + private String enterprise; + + + /** 地址 **/ + @JsonProperty("address") + private String address; + + + /** 客户分类 **/ + @JsonProperty("classification") + private String classification; + + + /** 创建时间 **/ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") + @JsonProperty("creatorTime") + private Date creatorTime; + + + /** 修改时间 **/ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") + @JsonProperty("lastModifyTime") + private Date lastModifyTime; + + private BigDecimal settlemenSum; + + private BigDecimal weightSum; + + private BigDecimal buckleWeightSum; + + private BigDecimal grossWeightSum; + + private BigDecimal salesPriceSum; } \ No newline at end of file