parent
2b38548ff7
commit
f12530a8a3
@ -0,0 +1,26 @@ |
||||
package com.dxhy.order.consumer.openapi.protocol.v6.sdenergy; |
||||
|
||||
import lombok.Data; |
||||
import lombok.NoArgsConstructor; |
||||
import lombok.ToString; |
||||
|
||||
/** |
||||
* @Description MdmGmfxxtbMulticodeReqBO中的VALUELIST字段 |
||||
* @Author 巩权林 |
||||
* @Date 2023/2/9 09:33 |
||||
**/ |
||||
@Data |
||||
@NoArgsConstructor |
||||
public class MdmBankListBO { |
||||
public String address; // 地址
|
||||
public String phone; // 电话
|
||||
public String bankOfDeposit; // 开户行
|
||||
public String bankNumber; // 银行账户
|
||||
|
||||
public MdmBankListBO(MdmGmfxxtbMulticodeValuelistBO bo, String address, String phone) { |
||||
this.setBankNumber(bo.getDESC4()); |
||||
this.setBankOfDeposit(bo.getDESC3()); |
||||
this.setPhone(phone); |
||||
this.setAddress(address); |
||||
} |
||||
} |
Loading…
Reference in new issue