|
@@ -57,7 +57,7 @@ public class UserAuthentication implements Serializable {
|
|
/**
|
|
/**
|
|
* 申请单号
|
|
* 申请单号
|
|
*/
|
|
*/
|
|
- private String orderNum;
|
|
|
|
|
|
+ private Long orderNum;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 是否通过认证 0:未通过,1:已通过
|
|
* 是否通过认证 0:未通过,1:已通过
|
|
@@ -146,11 +146,11 @@ public class UserAuthentication implements Serializable {
|
|
this.userId = userId;
|
|
this.userId = userId;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getOrderNum() {
|
|
|
|
|
|
+ public Long getOrderNum() {
|
|
return orderNum;
|
|
return orderNum;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setOrderNum(String orderNum) {
|
|
|
|
|
|
+ public void setOrderNum(Long orderNum) {
|
|
this.orderNum = orderNum;
|
|
this.orderNum = orderNum;
|
|
}
|
|
}
|
|
|
|
|