123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package net.chenlin.dp.modules.api.vo;
- public class CustomerBanks {
- private String ccuscode;//客户编码
- private String caccountnum;//银行账号
- private String bdefault;//默认值
- private String cbank;//所属银行编码
- private String cbranch;//开户银行
- private String caccountname;//账户名称
- private String cCusPrinvince;//省
- private String cCusCity;//市
- private String cCusCBBDepId;//机构号
- private String cCusBranchId;//联行号
- private String cCusBranchIdSec;//联行号II
- public String getCcuscode() {
- return ccuscode;
- }
- public void setCcuscode(String ccuscode) {
- this.ccuscode = ccuscode;
- }
- public String getCaccountnum() {
- return caccountnum;
- }
- public void setCaccountnum(String caccountnum) {
- this.caccountnum = caccountnum;
- }
- public String getBdefault() {
- return bdefault;
- }
- public void setBdefault(String bdefault) {
- this.bdefault = bdefault;
- }
- public String getCbank() {
- return cbank;
- }
- public void setCbank(String cbank) {
- this.cbank = cbank;
- }
- public String getCbranch() {
- return cbranch;
- }
- public void setCbranch(String cbranch) {
- this.cbranch = cbranch;
- }
- public String getCaccountname() {
- return caccountname;
- }
- public void setCaccountname(String caccountname) {
- this.caccountname = caccountname;
- }
- public String getcCusPrinvince() {
- return cCusPrinvince;
- }
- public void setcCusPrinvince(String cCusPrinvince) {
- this.cCusPrinvince = cCusPrinvince;
- }
- public String getcCusCity() {
- return cCusCity;
- }
- public void setcCusCity(String cCusCity) {
- this.cCusCity = cCusCity;
- }
- public String getcCusCBBDepId() {
- return cCusCBBDepId;
- }
- public void setcCusCBBDepId(String cCusCBBDepId) {
- this.cCusCBBDepId = cCusCBBDepId;
- }
- public String getcCusBranchId() {
- return cCusBranchId;
- }
- public void setcCusBranchId(String cCusBranchId) {
- this.cCusBranchId = cCusBranchId;
- }
- public String getcCusBranchIdSec() {
- return cCusBranchIdSec;
- }
- public void setcCusBranchIdSec(String cCusBranchIdSec) {
- this.cCusBranchIdSec = cCusBranchIdSec;
- }
- }
|