123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.jkcredit.invoice.credit.dto;
- import com.jkcredit.invoice.common.BaseEntity;
- import java.util.ArrayList;
- /**
- * etc换绑参数
- */
- public class CardChangeDto {
- /**
- * 客户名称
- */
- private String customerId;
- /**
- *原公司编号
- */
- private String companyNum;
- /**
- * 原公司名称
- */
- private String companyName;
- /**
- * 目标公司编号
- */
- private String targetCompanyNum;
- /**
- * 目标公司名称
- */
- private String targetCompanyName;
- /**
- * 换绑的卡号集合
- */
- private ArrayList<String> cardIdList;
- public String getCustomerId() {
- return customerId;
- }
- public void setCustomerId(String customerId) {
- this.customerId = customerId;
- }
- public String getCompanyNum() {
- return companyNum;
- }
- public void setCompanyNum(String companyNum) {
- this.companyNum = companyNum;
- }
- public String getTargetCompanyNum() {
- return targetCompanyNum;
- }
- public void setTargetCompanyNum(String targetCompanyNum) {
- this.targetCompanyNum = targetCompanyNum;
- }
- public ArrayList<String> getCardIdList() {
- return cardIdList;
- }
- public void setCardIdList(ArrayList<String> cardIdList) {
- this.cardIdList = cardIdList;
- }
- public String getCompanyName() {
- return companyName;
- }
- public void setCompanyName(String companyName) {
- this.companyName = companyName;
- }
- public String getTargetCompanyName() {
- return targetCompanyName;
- }
- public void setTargetCompanyName(String targetCompanyName) {
- this.targetCompanyName = targetCompanyName;
- }
- }
|