CustomerVerifyRequest.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.warehouseBusiness.request;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. public class CustomerVerifyRequest implements Serializable {
  5. /**
  6. * 回调通知URL 必填 String[1,255]
  7. */
  8. private String notify_url;
  9. private List<Customer> customers;
  10. public String getNotify_url() {
  11. return notify_url;
  12. }
  13. public void setNotify_url(String notify_url) {
  14. this.notify_url = notify_url;
  15. }
  16. public List<Customer> getCustomers() {
  17. return customers;
  18. }
  19. public void setCustomers(List<Customer> customers) {
  20. this.customers = customers;
  21. }
  22. public static class Customer {
  23. /**
  24. * 客户名称 必填 String[1,80] 公司名称|个人姓名
  25. */
  26. private String name;
  27. /**
  28. * 客户识别码 必填 String[1,30] 公司统一社会信用代码|个人身份证号
  29. */
  30. private String socialIdentifier;
  31. public String getName() {
  32. return name;
  33. }
  34. public void setName(String name) {
  35. this.name = name;
  36. }
  37. public String getSocialIdentifier() {
  38. return socialIdentifier;
  39. }
  40. public void setSocialIdentifier(String socialIdentifier) {
  41. this.socialIdentifier = socialIdentifier;
  42. }
  43. }
  44. }