| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.ruoyi.warehouseBusiness.request;
- import java.io.Serializable;
- import java.util.List;
- public class CustomerVerifyRequest implements Serializable {
- /**
- * 回调通知URL 必填 String[1,255]
- */
- private String notify_url;
- private List<Customer> customers;
- public String getNotify_url() {
- return notify_url;
- }
- public void setNotify_url(String notify_url) {
- this.notify_url = notify_url;
- }
- public List<Customer> getCustomers() {
- return customers;
- }
- public void setCustomers(List<Customer> customers) {
- this.customers = customers;
- }
- public static class Customer {
- /**
- * 客户名称 必填 String[1,80] 公司名称|个人姓名
- */
- private String name;
- /**
- * 客户识别码 必填 String[1,30] 公司统一社会信用代码|个人身份证号
- */
- private String socialIdentifier;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getSocialIdentifier() {
- return socialIdentifier;
- }
- public void setSocialIdentifier(String socialIdentifier) {
- this.socialIdentifier = socialIdentifier;
- }
- }
- }
|