2021-01-04 13:35:02 +08:00

46 lines
970 B
Java

package com.tenwa.lease.app.allinpay.servlet;
/**
* @program: apzl_leasing
* @author: yjf
* @create: 2020-12-21 16:55
**/
public class SignDto {
private String userName;
private String phoneNumber;
private String certId;
private String collectType;
private String accNumber;
public SignDto() {
}
public SignDto(String userName, String phoneNumber, String certId, String accNumber, String collectType) {
this.userName = userName;
this.phoneNumber = phoneNumber;
this.certId = certId;
this.accNumber = accNumber;
this.collectType = collectType;
}
public String getUserName() {
return userName;
}
public String getPhoneNumber() {
return phoneNumber;
}
public String getCertId() {
return certId;
}
public String getAccNumber() {
return accNumber;
}
public String getCollectType() {
return collectType;
}
}