|
@@ -14,6 +14,7 @@ import java.sql.Timestamp;
|
|
|
@Data
|
|
|
public class EnterpriseAuthentication {
|
|
|
private String isDaOrEa;//是研发机构还是评测机构
|
|
|
+ private String enterpriseName;
|
|
|
private Long id;
|
|
|
private Long userId;
|
|
|
private String IDCardNum;//身份证号码
|
|
@@ -21,8 +22,9 @@ public class EnterpriseAuthentication {
|
|
|
private String businessLicensePhoto;
|
|
|
private String unifiedSocialCreditCode;
|
|
|
private String sex;//2.0新加性别
|
|
|
- private String IDcardPositivePhoto;//身份证正面照
|
|
|
- private String IDCardBackPhoto;//身份证反面照
|
|
|
+ private String idCardPositivePhoto;//身份证正面照
|
|
|
+ private String idCardBackPhoto;//身份证反面照
|
|
|
+ private String address;
|
|
|
private int isDeleted;
|
|
|
private int isAuthentication;
|
|
|
private String explain;
|
|
@@ -30,21 +32,7 @@ public class EnterpriseAuthentication {
|
|
|
private Timestamp checkTime;
|
|
|
private Timestamp IDCardDeadTime;//身份证过期时间
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "CompanyAuth{" +
|
|
|
- "id=" + id +
|
|
|
- ", userId=" + userId +
|
|
|
- ", legalPersonName='" + legalPersonName + '\'' +
|
|
|
- ", businessLicensePhoto='" + businessLicensePhoto + '\'' +
|
|
|
- ", unifiedSocialCreditCode='" + unifiedSocialCreditCode + '\'' +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", isAuthentication=" + isAuthentication +
|
|
|
- ", explain=" + explain +
|
|
|
- ", applyTime='" + applyTime + '\'' +
|
|
|
- ", checkTime='" + checkTime + '\'' +
|
|
|
- '}';
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
public EnterpriseAuthentication getByPo(EnterpriseAuthenticationPO enterpriseAuthenticationPO) {
|
|
|
this.applyTime = enterpriseAuthenticationPO.getApplyTime();
|