|
@@ -22,7 +22,6 @@ import java.util.stream.Collectors;
|
|
|
public class AgencyVO {
|
|
|
private Long userId;
|
|
|
private String evaluationAgencyName;
|
|
|
- private String bankAccount;
|
|
|
private String address;
|
|
|
private List<String> evaluationAgencyAbilityList;
|
|
|
private List<AgencyResourceVO> evaluationAgencyResourceList;
|
|
@@ -31,12 +30,13 @@ public class AgencyVO {
|
|
|
private String explain;
|
|
|
private Long taskCount;
|
|
|
private int isDeleted;
|
|
|
+ private String businessLicensePhoto;
|
|
|
private Timestamp updateTime;
|
|
|
private Timestamp expireTime;
|
|
|
private Timestamp createTime;
|
|
|
private StatusVO authStatus;
|
|
|
private Timestamp applyTime;
|
|
|
- private List<String> type;
|
|
|
+ private List<String> roleList;
|
|
|
private String IdCardNum;
|
|
|
private String legalPersonName;
|
|
|
private Long id;
|
|
@@ -59,7 +59,7 @@ public class AgencyVO {
|
|
|
}
|
|
|
|
|
|
if(agency.getType() != null && agency.getType() != ""){
|
|
|
- this.type = (List<String>) JSONArray.parse(agency.getType());
|
|
|
+ this.roleList = (List<String>) JSONArray.parse(agency.getType());
|
|
|
}
|
|
|
this.authStatus = new StatusVO();
|
|
|
this.authStatus.initAuthStatus(this.isAuthentication);
|