|
@@ -98,7 +98,7 @@ public class StudentPaymentOrder {
|
|
|
|
|
|
private Date payTime;
|
|
|
|
|
|
- private Integer accountId;
|
|
|
+ private String accountId;
|
|
|
|
|
|
private PaymentChannelTypeEnum paymentChannelType;
|
|
|
|
|
@@ -263,11 +263,11 @@ public class StudentPaymentOrder {
|
|
|
public void setPayTime(Date payTime) {
|
|
|
this.payTime = payTime;
|
|
|
}
|
|
|
- public Integer getAccountId() {
|
|
|
+ public String getAccountId() {
|
|
|
return accountId;
|
|
|
}
|
|
|
|
|
|
- public void setAccountId(Integer accountId) {
|
|
|
+ public void setAccountId(String accountId) {
|
|
|
this.accountId = accountId;
|
|
|
}
|
|
|
|