CardChangeDto.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.jkcredit.invoice.credit.dto;
  2. import com.jkcredit.invoice.common.BaseEntity;
  3. import java.util.ArrayList;
  4. /**
  5. * etc换绑参数
  6. */
  7. public class CardChangeDto {
  8. /**
  9. * 客户名称
  10. */
  11. private String customerId;
  12. /**
  13. *原公司编号
  14. */
  15. private String companyNum;
  16. /**
  17. * 原公司名称
  18. */
  19. private String companyName;
  20. /**
  21. * 目标公司编号
  22. */
  23. private String targetCompanyNum;
  24. /**
  25. * 目标公司名称
  26. */
  27. private String targetCompanyName;
  28. /**
  29. * 换绑的卡号集合
  30. */
  31. private ArrayList<String> cardIdList;
  32. public String getCustomerId() {
  33. return customerId;
  34. }
  35. public void setCustomerId(String customerId) {
  36. this.customerId = customerId;
  37. }
  38. public String getCompanyNum() {
  39. return companyNum;
  40. }
  41. public void setCompanyNum(String companyNum) {
  42. this.companyNum = companyNum;
  43. }
  44. public String getTargetCompanyNum() {
  45. return targetCompanyNum;
  46. }
  47. public void setTargetCompanyNum(String targetCompanyNum) {
  48. this.targetCompanyNum = targetCompanyNum;
  49. }
  50. public ArrayList<String> getCardIdList() {
  51. return cardIdList;
  52. }
  53. public void setCardIdList(ArrayList<String> cardIdList) {
  54. this.cardIdList = cardIdList;
  55. }
  56. public String getCompanyName() {
  57. return companyName;
  58. }
  59. public void setCompanyName(String companyName) {
  60. this.companyName = companyName;
  61. }
  62. public String getTargetCompanyName() {
  63. return targetCompanyName;
  64. }
  65. public void setTargetCompanyName(String targetCompanyName) {
  66. this.targetCompanyName = targetCompanyName;
  67. }
  68. }