|
@@ -23,10 +23,12 @@ public class TestUserOrAgencyVO implements Serializable {
|
|
public TestUserOrAgencyVO(EvaluationAgency agency){
|
|
public TestUserOrAgencyVO(EvaluationAgency agency){
|
|
BeanUtils.copyProperties(agency, this);
|
|
BeanUtils.copyProperties(agency, this);
|
|
this.name = agency.getEvaluationAgencyName();
|
|
this.name = agency.getEvaluationAgencyName();
|
|
|
|
+ this.id = this.userId;
|
|
}
|
|
}
|
|
|
|
|
|
public TestUserOrAgencyVO(PersonalAuthentication testUser){
|
|
public TestUserOrAgencyVO(PersonalAuthentication testUser){
|
|
BeanUtils.copyProperties(testUser, this);
|
|
BeanUtils.copyProperties(testUser, this);
|
|
this.name = testUser.getRealName();
|
|
this.name = testUser.getRealName();
|
|
|
|
+ this.id = this.userId;
|
|
}
|
|
}
|
|
}
|
|
}
|