|
|
@ -1,30 +1,32 @@ |
|
|
|
package com.qs.cost.module.domain.dto; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
//t.Editprop = "A";//编辑属性:A表新增,M表修改 string类型
|
|
|
|
//t.cVenCode = "01020302";//供应商编码 (必填)
|
|
|
|
//t.cVenName = "测试名称";//供应商名称 (必填)
|
|
|
|
//t.cVenAbbName = "测试";//供应商简称
|
|
|
|
//t.cVCCode = "01";//供应商分类编码(必填)
|
|
|
|
//t.cDCCode = "";//地区编码
|
|
|
|
//t.cTrade = "";//所属行业 ---
|
|
|
|
//t.cVenAddress = "";//地址
|
|
|
|
//t.cVenPostCode = "";//邮政编码 ---
|
|
|
|
//t.cVenRegCode = "";//纳税人登记号
|
|
|
|
//t.cVenBank = "";//开户银行
|
|
|
|
//t.cVenAccount = "";//银行账号
|
|
|
|
//t.cVenLPerson = "";//法人
|
|
|
|
//t.cVenPhone = "";//电话
|
|
|
|
//t.cVenFax = "";//传真
|
|
|
|
//t.cVenEmail = "";//Email地址
|
|
|
|
//t.cVenPerson = "";//联系人
|
|
|
|
//t.cVenBusinessNo = "";//生产/经营许可证号
|
|
|
|
//t.cVenEnAddr1 = "";//英文地址1
|
|
|
|
//t.cVenEnName = "";//英文名称
|
|
|
|
* //t.Editprop = "A";//编辑属性:A表新增,M表修改 string类型
|
|
|
|
* //t.cVenCode = "01020302";//供应商编码 (必填)
|
|
|
|
* //t.cVenName = "测试名称";//供应商名称 (必填)
|
|
|
|
* //t.cVenAbbName = "测试";//供应商简称
|
|
|
|
* //t.cVCCode = "01";//供应商分类编码(必填)
|
|
|
|
* //t.cDCCode = "";//地区编码
|
|
|
|
* //t.cTrade = "";//所属行业 ---
|
|
|
|
* //t.cVenAddress = "";//地址
|
|
|
|
* //t.cVenPostCode = "";//邮政编码 ---
|
|
|
|
* //t.cVenRegCode = "";//纳税人登记号
|
|
|
|
* //t.cVenBank = "";//开户银行
|
|
|
|
* //t.cVenAccount = "";//银行账号
|
|
|
|
* //t.cVenLPerson = "";//法人
|
|
|
|
* //t.cVenPhone = "";//电话
|
|
|
|
* //t.cVenFax = "";//传真
|
|
|
|
* //t.cVenEmail = "";//Email地址
|
|
|
|
* //t.cVenPerson = "";//联系人
|
|
|
|
* //t.cVenBusinessNo = "";//生产/经营许可证号
|
|
|
|
* //t.cVenEnAddr1 = "";//英文地址1
|
|
|
|
* //t.cVenEnName = "";//英文名称
|
|
|
|
* |
|
|
|
* @author YenHex |
|
|
|
* @since 2022/9/27 |
|
|
@ -33,7 +35,7 @@ import lombok.Data; |
|
|
|
public class U8Vendor { |
|
|
|
|
|
|
|
@JsonProperty("Editprop") |
|
|
|
private String editprop; |
|
|
|
private String Editprop; |
|
|
|
|
|
|
|
@JsonProperty("cVenCode") |
|
|
|
private String cVenCode; |
|
|
@ -45,7 +47,7 @@ public class U8Vendor { |
|
|
|
private String cVenAbbName; |
|
|
|
|
|
|
|
@JsonProperty("cVCCode") |
|
|
|
private String cVcCode; |
|
|
|
private String cVCCode; |
|
|
|
|
|
|
|
@JsonProperty("cDCCode") |
|
|
|
private String cDCCode; |
|
|
@ -68,6 +70,10 @@ public class U8Vendor { |
|
|
|
@JsonProperty("cVenAccount") |
|
|
|
private String cVenAccount; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dVenDevDate") |
|
|
|
private Date dVenDevDate; |
|
|
|
|
|
|
|
@JsonProperty("cVenLPerson") |
|
|
|
private String cVenLPerson; |
|
|
|
|
|
|
@ -83,13 +89,340 @@ public class U8Vendor { |
|
|
|
@JsonProperty("cVenPerson") |
|
|
|
private String cVenPerson; |
|
|
|
|
|
|
|
@JsonProperty("cVenBP") |
|
|
|
private String cVenBP; |
|
|
|
|
|
|
|
@JsonProperty("cVenHand") |
|
|
|
private String cVenHand; |
|
|
|
|
|
|
|
@JsonProperty("cVenPPerson") |
|
|
|
private String cVenPPerson; |
|
|
|
|
|
|
|
@JsonProperty("iVenDisRate") |
|
|
|
private Double iVenDisRate; |
|
|
|
|
|
|
|
@JsonProperty("iVenCreGrade") |
|
|
|
private String iVenCreGrade; |
|
|
|
|
|
|
|
@JsonProperty("iVenCreLine") |
|
|
|
private Double iVenCreLine; |
|
|
|
|
|
|
|
@JsonProperty("iVenCreDate") |
|
|
|
private Integer iVenCreDate; |
|
|
|
|
|
|
|
@JsonProperty("cVenPayCond") |
|
|
|
private String cVenPayCond; |
|
|
|
|
|
|
|
@JsonProperty("cVenIAddress") |
|
|
|
private String cVenIAddress; |
|
|
|
|
|
|
|
@JsonProperty("cVenIType") |
|
|
|
private String cVenIType; |
|
|
|
|
|
|
|
@JsonProperty("cVenHeadCode") |
|
|
|
private String cVenHeadCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenWhCode") |
|
|
|
private String cVenWhCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenDepart") |
|
|
|
private String cVenDepart; |
|
|
|
|
|
|
|
@JsonProperty("iAPMoney") |
|
|
|
private Double iAPMoney; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dLastDate") |
|
|
|
private Date dLastDate; |
|
|
|
|
|
|
|
@JsonProperty("iLastMoney") |
|
|
|
private Double iLastMoney; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dLRDate") |
|
|
|
private Date dLRDate; |
|
|
|
|
|
|
|
@JsonProperty("iLRMoney") |
|
|
|
private Double iLRMoney; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dEndDate") |
|
|
|
private Date dEndDate; |
|
|
|
|
|
|
|
@JsonProperty("iFrequency") |
|
|
|
private Integer iFrequency; |
|
|
|
|
|
|
|
@JsonProperty("bVenTax") |
|
|
|
private Boolean bVenTax; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine1") |
|
|
|
private String cVenDefine1; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine2") |
|
|
|
private String cVenDefine2; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine3") |
|
|
|
private String cVenDefine3; |
|
|
|
|
|
|
|
@JsonProperty("cCreatePerson") |
|
|
|
private String cCreatePerson; |
|
|
|
|
|
|
|
@JsonProperty("cModifyPerson") |
|
|
|
private String cModifyPerson; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dModifyDate") |
|
|
|
private Date dModifyDate; |
|
|
|
|
|
|
|
@JsonProperty("cRelCustomer") |
|
|
|
private String cRelCustomer; |
|
|
|
|
|
|
|
@JsonProperty("iId") |
|
|
|
private Integer iId; |
|
|
|
|
|
|
|
@JsonProperty("cBarCode") |
|
|
|
private String cBarCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine4") |
|
|
|
private String cVenDefine4; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine5") |
|
|
|
private String cVenDefine5; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine6") |
|
|
|
private String cVenDefine6; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine7") |
|
|
|
private String cVenDefine7; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine8") |
|
|
|
private String cVenDefine8; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine9") |
|
|
|
private String cVenDefine9; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine10") |
|
|
|
private String cVenDefine10; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine11") |
|
|
|
private Integer cVenDefine11; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine12") |
|
|
|
private Integer cVenDefine12; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine13") |
|
|
|
private Double cVenDefine13; |
|
|
|
|
|
|
|
@JsonProperty("cVenDefine14") |
|
|
|
private Double cVenDefine14; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("cVenDefine15") |
|
|
|
private Date cVenDefine15; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("cVenDefine16") |
|
|
|
private Date cVenDefine16; |
|
|
|
|
|
|
|
@JsonProperty("pubufts") |
|
|
|
private String pubufts; |
|
|
|
|
|
|
|
@JsonProperty("fRegistFund") |
|
|
|
private Double fRegistFund; |
|
|
|
|
|
|
|
@JsonProperty("iEmployeeNum") |
|
|
|
private Integer iEmployeeNum; |
|
|
|
|
|
|
|
@JsonProperty("iGradeABC") |
|
|
|
private Long iGradeABC; |
|
|
|
|
|
|
|
@JsonProperty("cMemo") |
|
|
|
private String cMemo; |
|
|
|
|
|
|
|
@JsonProperty("bLicenceDate") |
|
|
|
private Boolean bLicenceDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dLicenceSDate") |
|
|
|
private Date dLicenceSDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dLicenceEDate") |
|
|
|
private Date dLicenceEDate; |
|
|
|
|
|
|
|
@JsonProperty("iLicenceADays") |
|
|
|
private Integer iLicenceADays; |
|
|
|
|
|
|
|
@JsonProperty("bBusinessDate") |
|
|
|
private Boolean bBusinessDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dBusinessSDate") |
|
|
|
private Date dBusinessSDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dBusinessEDate") |
|
|
|
private Date dBusinessEDate; |
|
|
|
|
|
|
|
@JsonProperty("iBusinessADays") |
|
|
|
private Integer iBusinessADays; |
|
|
|
|
|
|
|
@JsonProperty("bProxyDate") |
|
|
|
private Boolean bProxyDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dProxySDate") |
|
|
|
private Date dProxySDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dProxyEDate") |
|
|
|
private Date dProxyEDate; |
|
|
|
|
|
|
|
@JsonProperty("iProxyADays") |
|
|
|
private Integer iProxyADays; |
|
|
|
|
|
|
|
@JsonProperty("bPassGMP") |
|
|
|
private Boolean bPassGMP; |
|
|
|
|
|
|
|
@JsonProperty("bVenCargo") |
|
|
|
private Boolean bVenCargo; |
|
|
|
|
|
|
|
@JsonProperty("bProxyForeign") |
|
|
|
private Boolean bProxyForeign; |
|
|
|
|
|
|
|
@JsonProperty("bVenService") |
|
|
|
private Boolean bVenService; |
|
|
|
|
|
|
|
@JsonProperty("cVenTradeCCode") |
|
|
|
private String cVenTradeCCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenBankCode") |
|
|
|
private String cVenBankCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenExch_name") |
|
|
|
private String cVenExch_name; |
|
|
|
|
|
|
|
@JsonProperty("iVenGSPType") |
|
|
|
private Long iVenGSPType; |
|
|
|
|
|
|
|
@JsonProperty("iVenGSPAuth") |
|
|
|
private Long iVenGSPAuth; |
|
|
|
|
|
|
|
@JsonProperty("cVenGSPAuthNo") |
|
|
|
private String cVenGSPAuthNo; |
|
|
|
|
|
|
|
@JsonProperty("cVenBusinessNo") |
|
|
|
private String cVenBusinessNo; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnAddr1") |
|
|
|
private String cVenEnAddr1; |
|
|
|
@JsonProperty("cVenLicenceNo") |
|
|
|
private String cVenLicenceNo; |
|
|
|
|
|
|
|
@JsonProperty("bVenOverseas") |
|
|
|
private Boolean bVenOverseas; |
|
|
|
|
|
|
|
@JsonProperty("bVenAccPeriodMng") |
|
|
|
private Boolean bVenAccPeriodMng; |
|
|
|
|
|
|
|
@JsonProperty("cVenPUOMProtocol") |
|
|
|
private String cVenPUOMProtocol; |
|
|
|
|
|
|
|
@JsonProperty("cVenOtherProtocol") |
|
|
|
private String cVenOtherProtocol; |
|
|
|
|
|
|
|
@JsonProperty("cVenCountryCode") |
|
|
|
private String cVenCountryCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnName") |
|
|
|
private String cVenEnName; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnAddr1") |
|
|
|
private String cVenEnAddr1; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnAddr2") |
|
|
|
private String cVenEnAddr2; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnAddr3") |
|
|
|
private String cVenEnAddr3; |
|
|
|
|
|
|
|
@JsonProperty("cVenEnAddr4") |
|
|
|
private String cVenEnAddr4; |
|
|
|
|
|
|
|
@JsonProperty("cVenPortCode") |
|
|
|
private String cVenPortCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenPrimaryVen") |
|
|
|
private String cVenPrimaryVen; |
|
|
|
|
|
|
|
@JsonProperty("fVenCommisionRate") |
|
|
|
private Double fVenCommisionRate; |
|
|
|
|
|
|
|
@JsonProperty("fVenInsueRate") |
|
|
|
private Double fVenInsueRate; |
|
|
|
|
|
|
|
@JsonProperty("bVenHomeBranch") |
|
|
|
private Boolean bVenHomeBranch; |
|
|
|
|
|
|
|
@JsonProperty("cVenBranchAddr") |
|
|
|
private String cVenBranchAddr; |
|
|
|
|
|
|
|
@JsonProperty("cVenBranchPhone") |
|
|
|
private String cVenBranchPhone; |
|
|
|
|
|
|
|
@JsonProperty("cVenBranchPerson") |
|
|
|
private String cVenBranchPerson; |
|
|
|
|
|
|
|
@JsonProperty("cVenSSCode") |
|
|
|
private String cVenSSCode; |
|
|
|
|
|
|
|
@JsonProperty("cOMWhCode") |
|
|
|
private String cOMWhCode; |
|
|
|
|
|
|
|
@JsonProperty("cVenCMProtocol") |
|
|
|
private String cVenCMProtocol; |
|
|
|
|
|
|
|
@JsonProperty("cVenIMProtocol") |
|
|
|
private String cVenIMProtocol; |
|
|
|
|
|
|
|
@JsonProperty("iVenTaxRate") |
|
|
|
private Double iVenTaxRate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dVenCreateDatetime") |
|
|
|
private Date dVenCreateDatetime; |
|
|
|
|
|
|
|
@JsonProperty("cVenMnemCode") |
|
|
|
private String cVenMnemCode; |
|
|
|
|
|
|
|
// @JsonProperty("cVenName")
|
|
|
|
// private Guid cVenContactCode;
|
|
|
|
|
|
|
|
@JsonProperty("cvenbankall") |
|
|
|
private String cvenbankall; |
|
|
|
|
|
|
|
@JsonProperty("bIsVenAttachFile") |
|
|
|
private Boolean bIsVenAttachFile; |
|
|
|
|
|
|
|
@JsonProperty("cLicenceRange") |
|
|
|
private String cLicenceRange; |
|
|
|
|
|
|
|
@JsonProperty("cBusinessRange") |
|
|
|
private String cBusinessRange; |
|
|
|
|
|
|
|
@JsonProperty("cVenGSPRange") |
|
|
|
private String cVenGSPRange; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dVenGSPEDate") |
|
|
|
private Date dVenGSPEDate; |
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@JsonProperty("dVenGSPSDate") |
|
|
|
private Date dVenGSPSDate; |
|
|
|
|
|
|
|
@JsonProperty("iVenGSPADays") |
|
|
|
private Integer iVenGSPADays; |
|
|
|
|
|
|
|
@JsonProperty("bRetail") |
|
|
|
private Boolean bRetail; |
|
|
|
|
|
|
|
} |
|
|
|