parent
0330839b89
commit
59be0d87e9
@ -0,0 +1,27 @@ |
||||
package com.dxhy.order.baseservice.module.buyer.protocol.sdenergy; |
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField; |
||||
import lombok.ToString; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @Description MdmGmfxxtbReqBO中的MULTICODE字段 |
||||
* @Author 巩权林 |
||||
* @Date 2023/2/9 09:33 |
||||
**/ |
||||
@ToString |
||||
public class MdmGmfxxtbMulticodeBO { |
||||
|
||||
@JSONField(name = "VALUELIST") |
||||
private List<MdmGmfxxtbMulticodeValuelistBO> VALUELIST; |
||||
|
||||
public void setVALUELIST(List<MdmGmfxxtbMulticodeValuelistBO> VALUELIST) { |
||||
this.VALUELIST = VALUELIST; |
||||
} |
||||
|
||||
public List<MdmGmfxxtbMulticodeValuelistBO> getVALUELIST() { |
||||
return VALUELIST; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@ |
||||
package com.dxhy.order.baseservice.module.buyer.protocol.sdenergy; |
||||
|
||||
import lombok.ToString; |
||||
|
||||
/** |
||||
* @Description MdmGmfxxtbMulticodeReqBO中的VALUELIST字段 |
||||
* @Author 巩权林 |
||||
* @Date 2023/2/9 09:33 |
||||
**/ |
||||
@ToString |
||||
public class MdmGmfxxtbMulticodeValuelistBO { |
||||
|
||||
// 银行名称的值
|
||||
private String DESC3; |
||||
// 银行账号的值
|
||||
private String DESC4; |
||||
// 节点编码的值
|
||||
private String LISTCODE; |
||||
// A4
|
||||
private String SPECIALITYCODE; |
||||
|
||||
public void setDESC3(String DESC3) { |
||||
this.DESC3 = DESC3; |
||||
} |
||||
|
||||
public String getDESC3() { |
||||
return DESC3; |
||||
} |
||||
|
||||
public void setDESC4(String DESC4) { |
||||
this.DESC4 = DESC4; |
||||
} |
||||
|
||||
public String getDESC4() { |
||||
return DESC4; |
||||
} |
||||
|
||||
public void setLISTCODE(String LISTCODE) { |
||||
this.LISTCODE = LISTCODE; |
||||
} |
||||
|
||||
public String getLISTCODE() { |
||||
return LISTCODE; |
||||
} |
||||
|
||||
public void setSPECIALITYCODE(String SPECIALITYCODE) { |
||||
this.SPECIALITYCODE = SPECIALITYCODE; |
||||
} |
||||
|
||||
public String getSPECIALITYCODE() { |
||||
return SPECIALITYCODE; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,187 @@ |
||||
package com.dxhy.order.baseservice.module.buyer.protocol.sdenergy; |
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField; |
||||
import lombok.ToString; |
||||
|
||||
/** |
||||
* @Description 山东能源 MDM 客商 购买方信息接口BO |
||||
* @Author 巩权林 |
||||
* @Date 2023/2/9 09:31 |
||||
**/ |
||||
@ToString |
||||
public class MdmGmfxxtbReqBO { |
||||
|
||||
// 主编码的值
|
||||
private String CODE; |
||||
|
||||
// 业务伙伴全称的值
|
||||
private String DESC1; |
||||
|
||||
// 法人代表的值
|
||||
private String DESC12; |
||||
|
||||
// 统一社会信用代码(税号)的值
|
||||
private String DESC14; |
||||
|
||||
// 省份的值
|
||||
private String DESC22; |
||||
|
||||
// 城市的值
|
||||
private String DESC23; |
||||
|
||||
// 街道/门牌号的值
|
||||
private String DESC24; |
||||
|
||||
// 公司电话的值
|
||||
private String DESC26; |
||||
|
||||
// 手机号
|
||||
private String DESC27; |
||||
|
||||
// 邮箱
|
||||
private String DESC29; |
||||
|
||||
// 是否客户的值
|
||||
private String DESC38; |
||||
|
||||
// 是否供应商的值
|
||||
private String DESC39; |
||||
|
||||
// 开票名称的值
|
||||
private String DESC48; |
||||
|
||||
// 开票税号的值
|
||||
private String DESC49; |
||||
|
||||
@JSONField(name = "MULTICODE") |
||||
private MdmGmfxxtbMulticodeBO MULTICODE; |
||||
private String UUID; |
||||
|
||||
public void setCODE(String CODE) { |
||||
this.CODE = CODE; |
||||
} |
||||
|
||||
public String getCODE() { |
||||
return CODE; |
||||
} |
||||
|
||||
public void setDESC1(String DESC1) { |
||||
this.DESC1 = DESC1; |
||||
} |
||||
|
||||
public String getDESC1() { |
||||
return DESC1; |
||||
} |
||||
|
||||
public void setDESC12(String DESC12) { |
||||
this.DESC12 = DESC12; |
||||
} |
||||
|
||||
public String getDESC12() { |
||||
return DESC12; |
||||
} |
||||
|
||||
public void setDESC14(String DESC14) { |
||||
this.DESC14 = DESC14; |
||||
} |
||||
|
||||
public String getDESC14() { |
||||
return DESC14; |
||||
} |
||||
|
||||
public void setDESC22(String DESC22) { |
||||
this.DESC22 = DESC22; |
||||
} |
||||
|
||||
public String getDESC22() { |
||||
return DESC22; |
||||
} |
||||
|
||||
public void setDESC23(String DESC23) { |
||||
this.DESC23 = DESC23; |
||||
} |
||||
|
||||
public String getDESC23() { |
||||
return DESC23; |
||||
} |
||||
|
||||
public void setDESC24(String DESC24) { |
||||
this.DESC24 = DESC24; |
||||
} |
||||
|
||||
public String getDESC24() { |
||||
return DESC24; |
||||
} |
||||
|
||||
public void setDESC26(String DESC26) { |
||||
this.DESC26 = DESC26; |
||||
} |
||||
|
||||
public String getDESC26() { |
||||
return DESC26; |
||||
} |
||||
|
||||
public void setDESC38(String DESC38) { |
||||
this.DESC38 = DESC38; |
||||
} |
||||
|
||||
public String getDESC38() { |
||||
return DESC38; |
||||
} |
||||
|
||||
public void setDESC39(String DESC39) { |
||||
this.DESC39 = DESC39; |
||||
} |
||||
|
||||
public String getDESC39() { |
||||
return DESC39; |
||||
} |
||||
|
||||
public void setDESC48(String DESC48) { |
||||
this.DESC48 = DESC48; |
||||
} |
||||
|
||||
public String getDESC48() { |
||||
return DESC48; |
||||
} |
||||
|
||||
public void setDESC49(String DESC49) { |
||||
this.DESC49 = DESC49; |
||||
} |
||||
|
||||
public String getDESC49() { |
||||
return DESC49; |
||||
} |
||||
|
||||
public void setMULTICODE(MdmGmfxxtbMulticodeBO MULTICODE) { |
||||
this.MULTICODE = MULTICODE; |
||||
} |
||||
|
||||
public MdmGmfxxtbMulticodeBO getMULTICODE() { |
||||
return MULTICODE; |
||||
} |
||||
|
||||
public void setUUID(String UUID) { |
||||
this.UUID = UUID; |
||||
} |
||||
|
||||
public String getUUID() { |
||||
return UUID; |
||||
} |
||||
|
||||
public String getDESC27() { |
||||
return DESC27; |
||||
} |
||||
|
||||
public void setDESC27(String DESC27) { |
||||
this.DESC27 = DESC27; |
||||
} |
||||
|
||||
public String getDESC29() { |
||||
return DESC29; |
||||
} |
||||
|
||||
public void setDESC29(String DESC29) { |
||||
this.DESC29 = DESC29; |
||||
} |
||||
} |
Loading…
Reference in new issue