|
@@ -17,13 +17,11 @@ import java.util.List;
|
|
@Data
|
|
@Data
|
|
@AllArgsConstructor
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
-public class EvaluationAgency{
|
|
|
|
- private String idCardNum;
|
|
|
|
- private String legalPersonName;
|
|
|
|
|
|
+public class EvaluationAgency {
|
|
|
|
+ private String IdCardNum;
|
|
|
|
+ private String legalPersonName;
|
|
private Long id;
|
|
private Long id;
|
|
private Long userId;
|
|
private Long userId;
|
|
- private String idCardBackPhoto;
|
|
|
|
- private String idCardPositivePhoto;
|
|
|
|
private String evaluationAgencyName;
|
|
private String evaluationAgencyName;
|
|
private String bankAccount;
|
|
private String bankAccount;
|
|
private String address;
|
|
private String address;
|
|
@@ -38,21 +36,25 @@ public class EvaluationAgency{
|
|
private Timestamp checkTime;
|
|
private Timestamp checkTime;
|
|
private Timestamp applyTime;
|
|
private Timestamp applyTime;
|
|
private String type;
|
|
private String type;
|
|
|
|
+ private String sex;
|
|
|
|
+ private String idCardPositivePhoto;//身份证正面照
|
|
|
|
+ private String idCardBackPhoto;//身份证反面照
|
|
|
|
+ private Timestamp idCardDeadTime;
|
|
|
|
|
|
// public EvaluationAgency(EvaluationAgencyPO evaluationAgencyPO) {
|
|
// public EvaluationAgency(EvaluationAgencyPO evaluationAgencyPO) {
|
|
// BeanUtils.copyProperties(evaluationAgencyPO, this,"evaluationAgencyResourceList", "evaluationAgencyAbilityList");
|
|
// BeanUtils.copyProperties(evaluationAgencyPO, this,"evaluationAgencyResourceList", "evaluationAgencyAbilityList");
|
|
// }
|
|
// }
|
|
|
|
|
|
- public EvaluationAgency(EvaluationAgencyPO evaluationAgencyPO){
|
|
|
|
|
|
+ public EvaluationAgency(EvaluationAgencyPO evaluationAgencyPO) {
|
|
id = evaluationAgencyPO.getId();
|
|
id = evaluationAgencyPO.getId();
|
|
agencyPhoto = evaluationAgencyPO.getAgencyPhoto();
|
|
agencyPhoto = evaluationAgencyPO.getAgencyPhoto();
|
|
evaluationAgencyName = evaluationAgencyPO.getEvaluationAgencyName();
|
|
evaluationAgencyName = evaluationAgencyPO.getEvaluationAgencyName();
|
|
userId = evaluationAgencyPO.getUserId();
|
|
userId = evaluationAgencyPO.getUserId();
|
|
address = evaluationAgencyPO.getAddress();
|
|
address = evaluationAgencyPO.getAddress();
|
|
- updateTime=evaluationAgencyPO.getUpdateTime();
|
|
|
|
- expireTime=evaluationAgencyPO.getExpireTime();
|
|
|
|
- checkTime=evaluationAgencyPO.getCheckTime();
|
|
|
|
- applyTime=evaluationAgencyPO.getApplyTime();
|
|
|
|
|
|
+ updateTime = evaluationAgencyPO.getUpdateTime();
|
|
|
|
+ expireTime = evaluationAgencyPO.getExpireTime();
|
|
|
|
+ checkTime = evaluationAgencyPO.getCheckTime();
|
|
|
|
+ applyTime = evaluationAgencyPO.getApplyTime();
|
|
BeanUtils.copyProperties(evaluationAgencyPO, this);
|
|
BeanUtils.copyProperties(evaluationAgencyPO, this);
|
|
|
|
|
|
}
|
|
}
|