|
@@ -1,14 +1,10 @@
|
|
|
package com.ruoyi.system.domain.loan;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
-
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ruoyi.system.domain.enterprise.SysUserEnterprise;
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
-import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
@@ -295,6 +291,11 @@ public class LoanApplication extends BaseEntity
|
|
|
|
|
|
private String bigType;
|
|
|
|
|
|
+ /**
|
|
|
+ * 不在数据库的字段,判断是否放弃申诉 1:正常申诉 2:放弃申诉
|
|
|
+ */
|
|
|
+ private String ssType;
|
|
|
+
|
|
|
/**
|
|
|
* 全体股东信息附件
|
|
|
*/
|
|
@@ -323,116 +324,76 @@ public class LoanApplication extends BaseEntity
|
|
|
*/
|
|
|
private Map<String,List<LoanApplicationFj>> otherFj;
|
|
|
|
|
|
- public String getReviewTime() {
|
|
|
- return reviewTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReviewTime(String reviewTime) {
|
|
|
- this.reviewTime = reviewTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getReviewSchedule() {
|
|
|
- return reviewSchedule;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReviewSchedule(String reviewSchedule) {
|
|
|
- this.reviewSchedule = reviewSchedule;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfUserId() {
|
|
|
- return fUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfUserId(Long fUserId) {
|
|
|
- this.fUserId = fUserId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfUserName() {
|
|
|
- return fUserName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfUserName(String fUserName) {
|
|
|
- this.fUserName = fUserName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getaAuthorize() {
|
|
|
- return aAuthorize;
|
|
|
- }
|
|
|
-
|
|
|
- public void setaAuthorize(String aAuthorize) {
|
|
|
- this.aAuthorize = aAuthorize;
|
|
|
- }
|
|
|
-
|
|
|
- public String getGuaranteeShareholderName() {
|
|
|
- return guaranteeShareholderName;
|
|
|
+ public Long getLoanApplicationId() {
|
|
|
+ return loanApplicationId;
|
|
|
}
|
|
|
|
|
|
- public void setGuaranteeShareholderName(String guaranteeShareholderName) {
|
|
|
- this.guaranteeShareholderName = guaranteeShareholderName;
|
|
|
+ public void setLoanApplicationId(Long loanApplicationId) {
|
|
|
+ this.loanApplicationId = loanApplicationId;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeShareholderIdCard() {
|
|
|
- return guaranteeShareholderIdCard;
|
|
|
+ public String getLoanApplicationNumber() {
|
|
|
+ return loanApplicationNumber;
|
|
|
}
|
|
|
|
|
|
- public void setGuaranteeShareholderIdCard(String guaranteeShareholderIdCard) {
|
|
|
- this.guaranteeShareholderIdCard = guaranteeShareholderIdCard;
|
|
|
+ public void setLoanApplicationNumber(String loanApplicationNumber) {
|
|
|
+ this.loanApplicationNumber = loanApplicationNumber;
|
|
|
}
|
|
|
|
|
|
- public String getFileType() {
|
|
|
- return fileType;
|
|
|
+ public String getApplicationType() {
|
|
|
+ return applicationType;
|
|
|
}
|
|
|
|
|
|
- public void setFileType(String fileType) {
|
|
|
- this.fileType = fileType;
|
|
|
+ public void setApplicationType(String applicationType) {
|
|
|
+ this.applicationType = applicationType;
|
|
|
}
|
|
|
|
|
|
- public String getBigType() {
|
|
|
- return bigType;
|
|
|
+ public Double getApplicationAmount() {
|
|
|
+ return applicationAmount;
|
|
|
}
|
|
|
|
|
|
- public void setBigType(String bigType) {
|
|
|
- this.bigType = bigType;
|
|
|
+ public void setApplicationAmount(Double applicationAmount) {
|
|
|
+ this.applicationAmount = applicationAmount;
|
|
|
}
|
|
|
|
|
|
- public String getType() {
|
|
|
- return type;
|
|
|
+ public String getApplicationBank() {
|
|
|
+ return applicationBank;
|
|
|
}
|
|
|
|
|
|
- public void setType(String type) {
|
|
|
- this.type = type;
|
|
|
+ public void setApplicationBank(String applicationBank) {
|
|
|
+ this.applicationBank = applicationBank;
|
|
|
}
|
|
|
|
|
|
- public String getApplicationType() {
|
|
|
- return applicationType;
|
|
|
+ public String getUsagePeriod() {
|
|
|
+ return usagePeriod;
|
|
|
}
|
|
|
|
|
|
- public void setApplicationType(String applicationType) {
|
|
|
- this.applicationType = applicationType;
|
|
|
+ public void setUsagePeriod(String usagePeriod) {
|
|
|
+ this.usagePeriod = usagePeriod;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationAddress() {
|
|
|
- return corporationAddress;
|
|
|
+ public String getPurposeFunds() {
|
|
|
+ return purposeFunds;
|
|
|
}
|
|
|
|
|
|
- public void setCorporationAddress(String corporationAddress) {
|
|
|
- this.corporationAddress = corporationAddress;
|
|
|
+ public void setPurposeFunds(String purposeFunds) {
|
|
|
+ this.purposeFunds = purposeFunds;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationExpirationDate() {
|
|
|
- return corporationExpirationDate;
|
|
|
+ public String getRepaymentSource() {
|
|
|
+ return repaymentSource;
|
|
|
}
|
|
|
|
|
|
- public void setCorporationExpirationDate(String corporationExpirationDate) {
|
|
|
- this.corporationExpirationDate = corporationExpirationDate;
|
|
|
+ public void setRepaymentSource(String repaymentSource) {
|
|
|
+ this.repaymentSource = repaymentSource;
|
|
|
}
|
|
|
|
|
|
- public SysUserEnterprise getSysUserEnterprise() {
|
|
|
- return sysUserEnterprise;
|
|
|
+ public String getEnterpriseName() {
|
|
|
+ return enterpriseName;
|
|
|
}
|
|
|
|
|
|
- public void setSysUserEnterprise(SysUserEnterprise sysUserEnterprise) {
|
|
|
- this.sysUserEnterprise = sysUserEnterprise;
|
|
|
+ public void setEnterpriseName(String enterpriseName) {
|
|
|
+ this.enterpriseName = enterpriseName;
|
|
|
}
|
|
|
|
|
|
public Long getEnterpriseId() {
|
|
@@ -443,541 +404,430 @@ public class LoanApplication extends BaseEntity
|
|
|
this.enterpriseId = enterpriseId;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- public Map<String, List<LoanApplicationFj>> getBasicFj() {
|
|
|
- return basicFj;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBasicFj(Map<String, List<LoanApplicationFj>> basicFj) {
|
|
|
- this.basicFj = basicFj;
|
|
|
- }
|
|
|
-
|
|
|
- public Map<String, List<LoanApplicationFj>> getDeclareFj() {
|
|
|
- return declareFj;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeclareFj(Map<String, List<LoanApplicationFj>> declareFj) {
|
|
|
- this.declareFj = declareFj;
|
|
|
- }
|
|
|
-
|
|
|
- public Map<String, List<LoanApplicationFj>> getFileFj() {
|
|
|
- return fileFj;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFileFj(Map<String, List<LoanApplicationFj>> fileFj) {
|
|
|
- this.fileFj = fileFj;
|
|
|
+ public SysUserEnterprise getSysUserEnterprise() {
|
|
|
+ return sysUserEnterprise;
|
|
|
}
|
|
|
|
|
|
- public Map<String, List<LoanApplicationFj>> getOtherFj() {
|
|
|
- return otherFj;
|
|
|
+ public void setSysUserEnterprise(SysUserEnterprise sysUserEnterprise) {
|
|
|
+ this.sysUserEnterprise = sysUserEnterprise;
|
|
|
}
|
|
|
|
|
|
- public void setOtherFj(Map<String, List<LoanApplicationFj>> otherFj) {
|
|
|
- this.otherFj = otherFj;
|
|
|
+ public String getCategoryType() {
|
|
|
+ return categoryType;
|
|
|
}
|
|
|
|
|
|
- public String getLoanScheduleName() {
|
|
|
- return loanScheduleName;
|
|
|
+ public void setCategoryType(String categoryType) {
|
|
|
+ this.categoryType = categoryType;
|
|
|
}
|
|
|
|
|
|
- public void setLoanScheduleName(String loanScheduleName) {
|
|
|
- this.loanScheduleName = loanScheduleName;
|
|
|
+ public String getIsMake() {
|
|
|
+ return isMake;
|
|
|
}
|
|
|
|
|
|
- public List<ShareholderFj> getShareholderFjList() {
|
|
|
- return shareholderFjList;
|
|
|
+ public void setIsMake(String isMake) {
|
|
|
+ this.isMake = isMake;
|
|
|
}
|
|
|
|
|
|
- public void setShareholderFjList(List<ShareholderFj> shareholderFjList) {
|
|
|
- this.shareholderFjList = shareholderFjList;
|
|
|
+ public String getIsNew() {
|
|
|
+ return isNew;
|
|
|
}
|
|
|
|
|
|
- public List<LoanApplicationFj> getLoanApplicationFjList() {
|
|
|
- return loanApplicationFjList;
|
|
|
+ public void setIsNew(String isNew) {
|
|
|
+ this.isNew = isNew;
|
|
|
}
|
|
|
|
|
|
- public void setLoanApplicationFjList(List<LoanApplicationFj> loanApplicationFjList) {
|
|
|
- this.loanApplicationFjList = loanApplicationFjList;
|
|
|
+ public String getIsSmall() {
|
|
|
+ return isSmall;
|
|
|
}
|
|
|
|
|
|
- public void setLoanApplicationId(Long loanApplicationId)
|
|
|
- {
|
|
|
- this.loanApplicationId = loanApplicationId;
|
|
|
+ public void setIsSmall(String isSmall) {
|
|
|
+ this.isSmall = isSmall;
|
|
|
}
|
|
|
|
|
|
- public Long getLoanApplicationId()
|
|
|
- {
|
|
|
- return loanApplicationId;
|
|
|
- }
|
|
|
- public void setLoanApplicationNumber(String loanApplicationNumber)
|
|
|
- {
|
|
|
- this.loanApplicationNumber = loanApplicationNumber;
|
|
|
+ public String getIsDuty() {
|
|
|
+ return isDuty;
|
|
|
}
|
|
|
|
|
|
- public String getLoanApplicationNumber()
|
|
|
- {
|
|
|
- return loanApplicationNumber;
|
|
|
+ public void setIsDuty(String isDuty) {
|
|
|
+ this.isDuty = isDuty;
|
|
|
}
|
|
|
|
|
|
- public Double getApplicationAmount() {
|
|
|
- return applicationAmount;
|
|
|
+ public String getCompanyIntroduction() {
|
|
|
+ return companyIntroduction;
|
|
|
}
|
|
|
|
|
|
- public void setApplicationAmount(Double applicationAmount) {
|
|
|
- this.applicationAmount = applicationAmount;
|
|
|
+ public void setCompanyIntroduction(String companyIntroduction) {
|
|
|
+ this.companyIntroduction = companyIntroduction;
|
|
|
}
|
|
|
|
|
|
- public void setApplicationBank(String applicationBank)
|
|
|
- {
|
|
|
- this.applicationBank = applicationBank;
|
|
|
+ public String getCustomerType() {
|
|
|
+ return customerType;
|
|
|
}
|
|
|
|
|
|
- public String getApplicationBank()
|
|
|
- {
|
|
|
- return applicationBank;
|
|
|
- }
|
|
|
- public void setUsagePeriod(String usagePeriod)
|
|
|
- {
|
|
|
- this.usagePeriod = usagePeriod;
|
|
|
+ public void setCustomerType(String customerType) {
|
|
|
+ this.customerType = customerType;
|
|
|
}
|
|
|
|
|
|
- public String getUsagePeriod()
|
|
|
- {
|
|
|
- return usagePeriod;
|
|
|
- }
|
|
|
- public void setPurposeFunds(String purposeFunds)
|
|
|
- {
|
|
|
- this.purposeFunds = purposeFunds;
|
|
|
+ public String getCorporationFront() {
|
|
|
+ return corporationFront;
|
|
|
}
|
|
|
|
|
|
- public String getPurposeFunds()
|
|
|
- {
|
|
|
- return purposeFunds;
|
|
|
- }
|
|
|
- public void setRepaymentSource(String repaymentSource)
|
|
|
- {
|
|
|
- this.repaymentSource = repaymentSource;
|
|
|
+ public void setCorporationFront(String corporationFront) {
|
|
|
+ this.corporationFront = corporationFront;
|
|
|
}
|
|
|
|
|
|
- public String getRepaymentSource()
|
|
|
- {
|
|
|
- return repaymentSource;
|
|
|
- }
|
|
|
- public void setEnterpriseName(String enterpriseName)
|
|
|
- {
|
|
|
- this.enterpriseName = enterpriseName;
|
|
|
+ public String getCorporationBack() {
|
|
|
+ return corporationBack;
|
|
|
}
|
|
|
|
|
|
- public String getEnterpriseName()
|
|
|
- {
|
|
|
- return enterpriseName;
|
|
|
- }
|
|
|
- public void setCategoryType(String categoryType)
|
|
|
- {
|
|
|
- this.categoryType = categoryType;
|
|
|
+ public void setCorporationBack(String corporationBack) {
|
|
|
+ this.corporationBack = corporationBack;
|
|
|
}
|
|
|
|
|
|
- public String getCategoryType()
|
|
|
- {
|
|
|
- return categoryType;
|
|
|
- }
|
|
|
- public void setIsMake(String isMake)
|
|
|
- {
|
|
|
- this.isMake = isMake;
|
|
|
+ public String getCorporationName() {
|
|
|
+ return corporationName;
|
|
|
}
|
|
|
|
|
|
- public String getIsMake()
|
|
|
- {
|
|
|
- return isMake;
|
|
|
- }
|
|
|
- public void setIsNew(String isNew)
|
|
|
- {
|
|
|
- this.isNew = isNew;
|
|
|
+ public void setCorporationName(String corporationName) {
|
|
|
+ this.corporationName = corporationName;
|
|
|
}
|
|
|
|
|
|
- public String getIsNew()
|
|
|
- {
|
|
|
- return isNew;
|
|
|
- }
|
|
|
- public void setIsSmall(String isSmall)
|
|
|
- {
|
|
|
- this.isSmall = isSmall;
|
|
|
+ public String getCorporationIdCard() {
|
|
|
+ return corporationIdCard;
|
|
|
}
|
|
|
|
|
|
- public String getIsSmall()
|
|
|
- {
|
|
|
- return isSmall;
|
|
|
- }
|
|
|
- public void setIsDuty(String isDuty)
|
|
|
- {
|
|
|
- this.isDuty = isDuty;
|
|
|
+ public void setCorporationIdCard(String corporationIdCard) {
|
|
|
+ this.corporationIdCard = corporationIdCard;
|
|
|
}
|
|
|
|
|
|
- public String getIsDuty()
|
|
|
- {
|
|
|
- return isDuty;
|
|
|
- }
|
|
|
- public void setCompanyIntroduction(String companyIntroduction)
|
|
|
- {
|
|
|
- this.companyIntroduction = companyIntroduction;
|
|
|
+ public String getCorporationPhone() {
|
|
|
+ return corporationPhone;
|
|
|
}
|
|
|
|
|
|
- public String getCompanyIntroduction()
|
|
|
- {
|
|
|
- return companyIntroduction;
|
|
|
- }
|
|
|
- public void setCustomerType(String customerType)
|
|
|
- {
|
|
|
- this.customerType = customerType;
|
|
|
+ public void setCorporationPhone(String corporationPhone) {
|
|
|
+ this.corporationPhone = corporationPhone;
|
|
|
}
|
|
|
|
|
|
- public String getCustomerType()
|
|
|
- {
|
|
|
- return customerType;
|
|
|
- }
|
|
|
- public void setCorporationFront(String corporationFront)
|
|
|
- {
|
|
|
- this.corporationFront = corporationFront;
|
|
|
+ public String getCorporationAddress() {
|
|
|
+ return corporationAddress;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationFront()
|
|
|
- {
|
|
|
- return corporationFront;
|
|
|
- }
|
|
|
- public void setCorporationBack(String corporationBack)
|
|
|
- {
|
|
|
- this.corporationBack = corporationBack;
|
|
|
+ public void setCorporationAddress(String corporationAddress) {
|
|
|
+ this.corporationAddress = corporationAddress;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationBack()
|
|
|
- {
|
|
|
- return corporationBack;
|
|
|
- }
|
|
|
- public void setCorporationName(String corporationName)
|
|
|
- {
|
|
|
- this.corporationName = corporationName;
|
|
|
+ public String getCorporationExpirationDate() {
|
|
|
+ return corporationExpirationDate;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationName()
|
|
|
- {
|
|
|
- return corporationName;
|
|
|
- }
|
|
|
- public void setCorporationIdCard(String corporationIdCard)
|
|
|
- {
|
|
|
- this.corporationIdCard = corporationIdCard;
|
|
|
+ public void setCorporationExpirationDate(String corporationExpirationDate) {
|
|
|
+ this.corporationExpirationDate = corporationExpirationDate;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationIdCard()
|
|
|
- {
|
|
|
- return corporationIdCard;
|
|
|
- }
|
|
|
- public void setCorporationPhone(String corporationPhone)
|
|
|
- {
|
|
|
- this.corporationPhone = corporationPhone;
|
|
|
+ public String getFamilyPopulation() {
|
|
|
+ return familyPopulation;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationPhone()
|
|
|
- {
|
|
|
- return corporationPhone;
|
|
|
- }
|
|
|
- public void setFamilyPopulation(String familyPopulation)
|
|
|
- {
|
|
|
+ public void setFamilyPopulation(String familyPopulation) {
|
|
|
this.familyPopulation = familyPopulation;
|
|
|
}
|
|
|
|
|
|
- public String getFamilyPopulation()
|
|
|
- {
|
|
|
- return familyPopulation;
|
|
|
+ public String getCorporationJob() {
|
|
|
+ return corporationJob;
|
|
|
}
|
|
|
- public void setCorporationJob(String corporationJob)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCorporationJob(String corporationJob) {
|
|
|
this.corporationJob = corporationJob;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationJob()
|
|
|
- {
|
|
|
- return corporationJob;
|
|
|
+ public String getIsLoan() {
|
|
|
+ return isLoan;
|
|
|
}
|
|
|
- public void setIsLoan(String isLoan)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setIsLoan(String isLoan) {
|
|
|
this.isLoan = isLoan;
|
|
|
}
|
|
|
|
|
|
- public String getIsLoan()
|
|
|
- {
|
|
|
- return isLoan;
|
|
|
+ public String getReceivablePay() {
|
|
|
+ return receivablePay;
|
|
|
}
|
|
|
- public void setReceivablePay(String receivablePay)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setReceivablePay(String receivablePay) {
|
|
|
this.receivablePay = receivablePay;
|
|
|
}
|
|
|
|
|
|
- public String getReceivablePay()
|
|
|
- {
|
|
|
- return receivablePay;
|
|
|
+ public String getBusinessSituation() {
|
|
|
+ return businessSituation;
|
|
|
}
|
|
|
- public void setBusinessSituation(String businessSituation)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setBusinessSituation(String businessSituation) {
|
|
|
this.businessSituation = businessSituation;
|
|
|
}
|
|
|
|
|
|
- public String getBusinessSituation()
|
|
|
- {
|
|
|
- return businessSituation;
|
|
|
+ public String getBusinessEfficiency() {
|
|
|
+ return businessEfficiency;
|
|
|
}
|
|
|
- public void setBusinessEfficiency(String businessEfficiency)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setBusinessEfficiency(String businessEfficiency) {
|
|
|
this.businessEfficiency = businessEfficiency;
|
|
|
}
|
|
|
|
|
|
- public String getBusinessEfficiency()
|
|
|
- {
|
|
|
- return businessEfficiency;
|
|
|
+ public String getCorporationMaritalStatus() {
|
|
|
+ return corporationMaritalStatus;
|
|
|
}
|
|
|
- public void setCorporationMaritalStatus(String corporationMaritalStatus)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCorporationMaritalStatus(String corporationMaritalStatus) {
|
|
|
this.corporationMaritalStatus = corporationMaritalStatus;
|
|
|
}
|
|
|
|
|
|
- public String getCorporationMaritalStatus()
|
|
|
- {
|
|
|
- return corporationMaritalStatus;
|
|
|
+ public String getSpouseFront() {
|
|
|
+ return spouseFront;
|
|
|
}
|
|
|
- public void setSpouseFront(String spouseFront)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSpouseFront(String spouseFront) {
|
|
|
this.spouseFront = spouseFront;
|
|
|
}
|
|
|
|
|
|
- public String getSpouseFront()
|
|
|
- {
|
|
|
- return spouseFront;
|
|
|
+ public String getSpouseBack() {
|
|
|
+ return spouseBack;
|
|
|
}
|
|
|
- public void setSpouseBack(String spouseBack)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSpouseBack(String spouseBack) {
|
|
|
this.spouseBack = spouseBack;
|
|
|
}
|
|
|
|
|
|
- public String getSpouseBack()
|
|
|
- {
|
|
|
- return spouseBack;
|
|
|
+ public String getSpouseName() {
|
|
|
+ return spouseName;
|
|
|
}
|
|
|
- public void setSpouseName(String spouseName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSpouseName(String spouseName) {
|
|
|
this.spouseName = spouseName;
|
|
|
}
|
|
|
|
|
|
- public String getSpouseName()
|
|
|
- {
|
|
|
- return spouseName;
|
|
|
+ public String getSpouseIdCard() {
|
|
|
+ return spouseIdCard;
|
|
|
}
|
|
|
- public void setSpouseIdCard(String spouseIdCard)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSpouseIdCard(String spouseIdCard) {
|
|
|
this.spouseIdCard = spouseIdCard;
|
|
|
}
|
|
|
|
|
|
- public String getSpouseIdCard()
|
|
|
- {
|
|
|
- return spouseIdCard;
|
|
|
+ public String getSpousePhone() {
|
|
|
+ return spousePhone;
|
|
|
}
|
|
|
- public void setSpousePhone(String spousePhone)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSpousePhone(String spousePhone) {
|
|
|
this.spousePhone = spousePhone;
|
|
|
}
|
|
|
|
|
|
- public String getSpousePhone()
|
|
|
- {
|
|
|
- return spousePhone;
|
|
|
+ public String getGuaranteeType() {
|
|
|
+ return guaranteeType;
|
|
|
}
|
|
|
- public void setGuaranteeType(String guaranteeType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeType(String guaranteeType) {
|
|
|
this.guaranteeType = guaranteeType;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeType()
|
|
|
- {
|
|
|
- return guaranteeType;
|
|
|
+ public String getGuaranteeFront() {
|
|
|
+ return guaranteeFront;
|
|
|
}
|
|
|
- public void setGuaranteeFront(String guaranteeFront)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeFront(String guaranteeFront) {
|
|
|
this.guaranteeFront = guaranteeFront;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeFront()
|
|
|
- {
|
|
|
- return guaranteeFront;
|
|
|
+ public String getGuaranteeBack() {
|
|
|
+ return guaranteeBack;
|
|
|
}
|
|
|
- public void setGuaranteeBack(String guaranteeBack)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeBack(String guaranteeBack) {
|
|
|
this.guaranteeBack = guaranteeBack;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeBack()
|
|
|
- {
|
|
|
- return guaranteeBack;
|
|
|
+ public String getGuaranteeName() {
|
|
|
+ return guaranteeName;
|
|
|
}
|
|
|
- public void setGuaranteeName(String guaranteeName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeName(String guaranteeName) {
|
|
|
this.guaranteeName = guaranteeName;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeName()
|
|
|
- {
|
|
|
- return guaranteeName;
|
|
|
+ public String getGuaranteeIdCard() {
|
|
|
+ return guaranteeIdCard;
|
|
|
}
|
|
|
- public void setGuaranteeIdCard(String guaranteeIdCard)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeIdCard(String guaranteeIdCard) {
|
|
|
this.guaranteeIdCard = guaranteeIdCard;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeIdCard()
|
|
|
- {
|
|
|
- return guaranteeIdCard;
|
|
|
+ public String getGuaranteePhone() {
|
|
|
+ return guaranteePhone;
|
|
|
}
|
|
|
- public void setGuaranteePhone(String guaranteePhone)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteePhone(String guaranteePhone) {
|
|
|
this.guaranteePhone = guaranteePhone;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteePhone()
|
|
|
- {
|
|
|
- return guaranteePhone;
|
|
|
+ public String getGuaranteeMaritalStatus() {
|
|
|
+ return guaranteeMaritalStatus;
|
|
|
}
|
|
|
- public void setGuaranteeMaritalStatus(String guaranteeMaritalStatus)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeMaritalStatus(String guaranteeMaritalStatus) {
|
|
|
this.guaranteeMaritalStatus = guaranteeMaritalStatus;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeMaritalStatus()
|
|
|
- {
|
|
|
- return guaranteeMaritalStatus;
|
|
|
+ public String getGuaranteeSpouseFront() {
|
|
|
+ return guaranteeSpouseFront;
|
|
|
}
|
|
|
- public void setGuaranteeSpouseFront(String guaranteeSpouseFront)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeSpouseFront(String guaranteeSpouseFront) {
|
|
|
this.guaranteeSpouseFront = guaranteeSpouseFront;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeSpouseFront()
|
|
|
- {
|
|
|
- return guaranteeSpouseFront;
|
|
|
+ public String getGuaranteeSpouseBack() {
|
|
|
+ return guaranteeSpouseBack;
|
|
|
}
|
|
|
- public void setGuaranteeSpouseBack(String guaranteeSpouseBack)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeSpouseBack(String guaranteeSpouseBack) {
|
|
|
this.guaranteeSpouseBack = guaranteeSpouseBack;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeSpouseBack()
|
|
|
- {
|
|
|
- return guaranteeSpouseBack;
|
|
|
+ public String getGuaranteeSpouseName() {
|
|
|
+ return guaranteeSpouseName;
|
|
|
}
|
|
|
- public void setGuaranteeSpouseName(String guaranteeSpouseName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeSpouseName(String guaranteeSpouseName) {
|
|
|
this.guaranteeSpouseName = guaranteeSpouseName;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeSpouseName()
|
|
|
- {
|
|
|
- return guaranteeSpouseName;
|
|
|
+ public String getGuaranteeSpouseIdCard() {
|
|
|
+ return guaranteeSpouseIdCard;
|
|
|
}
|
|
|
- public void setGuaranteeSpouseIdCard(String guaranteeSpouseIdCard)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeSpouseIdCard(String guaranteeSpouseIdCard) {
|
|
|
this.guaranteeSpouseIdCard = guaranteeSpouseIdCard;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeSpouseIdCard()
|
|
|
- {
|
|
|
- return guaranteeSpouseIdCard;
|
|
|
+ public String getGuaranteeSpousePhone() {
|
|
|
+ return guaranteeSpousePhone;
|
|
|
}
|
|
|
- public void setGuaranteeSpousePhone(String guaranteeSpousePhone)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setGuaranteeSpousePhone(String guaranteeSpousePhone) {
|
|
|
this.guaranteeSpousePhone = guaranteeSpousePhone;
|
|
|
}
|
|
|
|
|
|
- public String getGuaranteeSpousePhone()
|
|
|
- {
|
|
|
- return guaranteeSpousePhone;
|
|
|
+ public String getGuaranteeShareholderName() {
|
|
|
+ return guaranteeShareholderName;
|
|
|
}
|
|
|
- public void setUserId(Long userId)
|
|
|
- {
|
|
|
- this.userId = userId;
|
|
|
+
|
|
|
+ public void setGuaranteeShareholderName(String guaranteeShareholderName) {
|
|
|
+ this.guaranteeShareholderName = guaranteeShareholderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGuaranteeShareholderIdCard() {
|
|
|
+ return guaranteeShareholderIdCard;
|
|
|
}
|
|
|
|
|
|
- public Long getUserId()
|
|
|
- {
|
|
|
+ public void setGuaranteeShareholderIdCard(String guaranteeShareholderIdCard) {
|
|
|
+ this.guaranteeShareholderIdCard = guaranteeShareholderIdCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
|
- public void setIdCard(String idCard)
|
|
|
- {
|
|
|
- this.idCard = idCard;
|
|
|
+
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
}
|
|
|
|
|
|
- public String getIdCard()
|
|
|
- {
|
|
|
+ public String getIdCard() {
|
|
|
return idCard;
|
|
|
}
|
|
|
- public void setApplicationTime(Date applicationTime)
|
|
|
- {
|
|
|
- this.applicationTime = applicationTime;
|
|
|
+
|
|
|
+ public void setIdCard(String idCard) {
|
|
|
+ this.idCard = idCard;
|
|
|
}
|
|
|
|
|
|
- public Date getApplicationTime()
|
|
|
- {
|
|
|
+ public Date getApplicationTime() {
|
|
|
return applicationTime;
|
|
|
}
|
|
|
- public void setFileTime(Date fileTime)
|
|
|
- {
|
|
|
- this.fileTime = fileTime;
|
|
|
+
|
|
|
+ public void setApplicationTime(Date applicationTime) {
|
|
|
+ this.applicationTime = applicationTime;
|
|
|
}
|
|
|
|
|
|
- public Date getFileTime()
|
|
|
- {
|
|
|
+ public Date getFileTime() {
|
|
|
return fileTime;
|
|
|
}
|
|
|
- public void setLoanSchedule(String loanSchedule)
|
|
|
- {
|
|
|
- this.loanSchedule = loanSchedule;
|
|
|
+
|
|
|
+ public void setFileTime(Date fileTime) {
|
|
|
+ this.fileTime = fileTime;
|
|
|
}
|
|
|
|
|
|
- public String getLoanSchedule()
|
|
|
- {
|
|
|
+ public String getReviewTime() {
|
|
|
+ return reviewTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReviewTime(String reviewTime) {
|
|
|
+ this.reviewTime = reviewTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLoanSchedule() {
|
|
|
return loanSchedule;
|
|
|
}
|
|
|
- public void setAuditSchedule(String auditSchedule)
|
|
|
- {
|
|
|
- this.auditSchedule = auditSchedule;
|
|
|
+
|
|
|
+ public void setLoanSchedule(String loanSchedule) {
|
|
|
+ this.loanSchedule = loanSchedule;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLoanScheduleName() {
|
|
|
+ return loanScheduleName;
|
|
|
}
|
|
|
|
|
|
- public String getAuditSchedule()
|
|
|
- {
|
|
|
+ public void setLoanScheduleName(String loanScheduleName) {
|
|
|
+ this.loanScheduleName = loanScheduleName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAuditSchedule() {
|
|
|
return auditSchedule;
|
|
|
}
|
|
|
- public void setAuditType(String auditType)
|
|
|
- {
|
|
|
- this.auditType = auditType;
|
|
|
+
|
|
|
+ public void setAuditSchedule(String auditSchedule) {
|
|
|
+ this.auditSchedule = auditSchedule;
|
|
|
}
|
|
|
|
|
|
- public String getAuditType()
|
|
|
- {
|
|
|
+ public String getAuditType() {
|
|
|
return auditType;
|
|
|
}
|
|
|
- public void setLoanApplicationType(String loanApplicationType)
|
|
|
- {
|
|
|
- this.loanApplicationType = loanApplicationType;
|
|
|
+
|
|
|
+ public void setAuditType(String auditType) {
|
|
|
+ this.auditType = auditType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReviewSchedule() {
|
|
|
+ return reviewSchedule;
|
|
|
}
|
|
|
|
|
|
- public String getLoanApplicationType()
|
|
|
- {
|
|
|
+ public void setReviewSchedule(String reviewSchedule) {
|
|
|
+ this.reviewSchedule = reviewSchedule;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLoanApplicationType() {
|
|
|
return loanApplicationType;
|
|
|
}
|
|
|
- public void setaUserId(Long aUserId)
|
|
|
- {
|
|
|
- this.aUserId = aUserId;
|
|
|
+
|
|
|
+ public void setLoanApplicationType(String loanApplicationType) {
|
|
|
+ this.loanApplicationType = loanApplicationType;
|
|
|
}
|
|
|
|
|
|
- public Long getaUserId()
|
|
|
- {
|
|
|
+ public Long getaUserId() {
|
|
|
return aUserId;
|
|
|
}
|
|
|
|
|
|
+ public void setaUserId(Long aUserId) {
|
|
|
+ this.aUserId = aUserId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getaUserName() {
|
|
|
return aUserName;
|
|
|
}
|
|
@@ -986,6 +836,14 @@ public class LoanApplication extends BaseEntity
|
|
|
this.aUserName = aUserName;
|
|
|
}
|
|
|
|
|
|
+ public String getaAuthorize() {
|
|
|
+ return aAuthorize;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setaAuthorize(String aAuthorize) {
|
|
|
+ this.aAuthorize = aAuthorize;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getbUserId() {
|
|
|
return bUserId;
|
|
|
}
|
|
@@ -1001,4 +859,100 @@ public class LoanApplication extends BaseEntity
|
|
|
public void setbUserName(String bUserName) {
|
|
|
this.bUserName = bUserName;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getfUserId() {
|
|
|
+ return fUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfUserId(Long fUserId) {
|
|
|
+ this.fUserId = fUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getfUserName() {
|
|
|
+ return fUserName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfUserName(String fUserName) {
|
|
|
+ this.fUserName = fUserName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFileType() {
|
|
|
+ return fileType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileType(String fileType) {
|
|
|
+ this.fileType = fileType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBigType() {
|
|
|
+ return bigType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBigType(String bigType) {
|
|
|
+ this.bigType = bigType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSsType() {
|
|
|
+ return ssType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSsType(String ssType) {
|
|
|
+ this.ssType = ssType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ShareholderFj> getShareholderFjList() {
|
|
|
+ return shareholderFjList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShareholderFjList(List<ShareholderFj> shareholderFjList) {
|
|
|
+ this.shareholderFjList = shareholderFjList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<LoanApplicationFj> getLoanApplicationFjList() {
|
|
|
+ return loanApplicationFjList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLoanApplicationFjList(List<LoanApplicationFj> loanApplicationFjList) {
|
|
|
+ this.loanApplicationFjList = loanApplicationFjList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, List<LoanApplicationFj>> getBasicFj() {
|
|
|
+ return basicFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBasicFj(Map<String, List<LoanApplicationFj>> basicFj) {
|
|
|
+ this.basicFj = basicFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, List<LoanApplicationFj>> getDeclareFj() {
|
|
|
+ return declareFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeclareFj(Map<String, List<LoanApplicationFj>> declareFj) {
|
|
|
+ this.declareFj = declareFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, List<LoanApplicationFj>> getFileFj() {
|
|
|
+ return fileFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileFj(Map<String, List<LoanApplicationFj>> fileFj) {
|
|
|
+ this.fileFj = fileFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, List<LoanApplicationFj>> getOtherFj() {
|
|
|
+ return otherFj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherFj(Map<String, List<LoanApplicationFj>> otherFj) {
|
|
|
+ this.otherFj = otherFj;
|
|
|
+ }
|
|
|
}
|