diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgApplyAmountInfo.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgApplyAmountInfo.java new file mode 100644 index 00000000..b8360a3c --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgApplyAmountInfo.java @@ -0,0 +1,82 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 申请贷款信息 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_apply_amount_info") +public class DgApplyAmountInfo implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 提单人id + */ + private Integer presenterId; + + /** + * 申请额度 + */ + private BigDecimal applyAmount; + + /** + * 申请期限 + */ + private String applyTime; + + /** + * 贷款银行(用中划线隔开) + */ + private String bank; + + /** + * 贷款用途 + */ + private String amountWide; + + /** + * 反担保措施(中划线隔开) + */ + private String enGuaranteeMeasures; + + /** + * 业务类型 + */ + private String businessType; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsList.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsList.java new file mode 100644 index 00000000..61680be9 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsList.java @@ -0,0 +1,34 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 价值评估列表 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_assets_assessment_assets_list") +public class DgAssetsAssessmentAssetsList implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + private String name; + + private Date createTime; + + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsLog.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsLog.java new file mode 100644 index 00000000..4e095c04 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssessmentAssetsLog.java @@ -0,0 +1,34 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; + +/** + *

+ * 价值评估记录 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_assets_assessment_assets_log") +public class DgAssetsAssessmentAssetsLog implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + private Integer companyId; + + private String name; + + private BigDecimal amount; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssignUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssignUser.java new file mode 100644 index 00000000..a9e1da73 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsAssignUser.java @@ -0,0 +1,82 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 资产部记录 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_assets_assign_user") +public class DgAssetsAssignUser implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键ID + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业ID + */ + private Integer companyId; + + /** + * 员工id + */ + private Integer empId; + + /** + * 类型(1:第一审批人 2:指派人AB角 3:经理) + */ + private Integer type; + + /** + * 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) + */ + private Integer status; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsInvestigation.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsInvestigation.java new file mode 100644 index 00000000..adbb9a3d --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAssetsInvestigation.java @@ -0,0 +1,112 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 资产调查 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_assets_investigation") +public class DgAssetsInvestigation implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 调查者id + */ + private Integer empId; + + /** + * 资产评估报告(名称) + */ + private String assetsName; + + /** + * 资产评估报告编号 + */ + private String assetsCode; + + /** + * 评估日期 + */ + private Date assetsTime; + + /** + * 合计 + */ + private BigDecimal amount; + + /** + * 审计报告(名称) + */ + private String auditName; + + /** + * 审计编号 + */ + private String auditCode; + + /** + * 审计日期 + */ + private Date auditTime; + + /** + * 审计价值(万元) + */ + private BigDecimal auditAmount; + + /** + * 反担保措施 + */ + private String guaranteeMeasures; + + /** + * 附件 + */ + private String file; + + /** + * 审核意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAuditProcess.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAuditProcess.java new file mode 100644 index 00000000..4bdadcad --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgAuditProcess.java @@ -0,0 +1,66 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 审核流程进程 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_audit_process") +public class DgAuditProcess implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 审批人id + */ + private Integer empId; + + /** + * 部门名称 + */ + private String deptName; + + /** + * 时间 + */ + private Date dateTime; + + /** + * 状态 + */ + private String status; + + /** + * 审批人 + */ + private String empName; + + /** + * 审批意见 + */ + private String remark; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceAssignUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceAssignUser.java new file mode 100644 index 00000000..b5bc0e09 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceAssignUser.java @@ -0,0 +1,82 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 合规调查记录 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_compliance_assign_user") +public class DgComplianceAssignUser implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 员工id + */ + private Integer empId; + + /** + * 类型(1:第一审批人 2:指派人AB角 3:第一审批人审核 3:经理) + */ + private Integer type; + + /** + * 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) + */ + private Integer status; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceInvestigation.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceInvestigation.java new file mode 100644 index 00000000..4c650fcc --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgComplianceInvestigation.java @@ -0,0 +1,66 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 合规调查 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_compliance_investigation") +public class DgComplianceInvestigation implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 调查者id + */ + private Integer empId; + + /** + * 附件 + */ + private String file; + + /** + * 审核意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; + +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgEnclosureInfo.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgEnclosureInfo.java new file mode 100644 index 00000000..053db181 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgEnclosureInfo.java @@ -0,0 +1,94 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; + +/** + *

+ * 附件 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_enclosure_info") +public class DgEnclosureInfo implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 营业执照复印件 + */ + private String businessLicense; + + /** + * 上传法定代表人夫妻及企业实际经营者身份证复印件 + */ + private String legalCardCopy; + + /** + * 法定代表人夫妻户口本,结婚证(离婚证)复印件 + */ + private String marriageCopy; + + /** + * 法定代表人身份证明 + */ + private String legalCopy; + + /** + * 公司章程 + */ + private String companyConstitution; + + /** + * 会计师事务所审计的上一年度及本年度审计报告 + */ + private String accountingFirm; + + /** + * 企业信用报告 + */ + private String companyCredit; + + /** + * 企业法人夫妇信用报告,实际经营者信用报告 + */ + private String creditReport; + + /** + * 征信业务授权书,承诺书 + */ + private String certificateAuthorization; + + /** + * 增值税纳税申报表首表复印件/完税证明 + */ + private String taxCertificate; + + /** + * 股东会会议纪要 + */ + private String meetingMinutes; + + /** + * 反担保资料和评估报告 + */ + private String assessmentReport; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApply.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApply.java new file mode 100644 index 00000000..e4f43900 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApply.java @@ -0,0 +1,64 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 担保审核 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_apply") +public class DgGuaranteeApply implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(value = "id", type = IdType.ID_WORKER) + private Integer id; + + private Integer companyId; + + /** + * 审核人 + */ + private Integer empId; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 状态(1待审核 2审核通过 3拒绝 4驳回) + */ + private Integer status; + + private Date createTime; + + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApplyLast.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApplyLast.java new file mode 100644 index 00000000..200bfdfd --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeApplyLast.java @@ -0,0 +1,64 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 担保经理审核 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_apply_last") +public class DgGuaranteeApplyLast implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(value = "id", type = IdType.ID_WORKER) + private Integer id; + + private Integer companyId; + + /** + * 审核人 + */ + private Integer empId; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 状态(1待审核 2审核通过 3拒绝 4驳回) + */ + private Integer status; + + private Date createTime; + + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeAssignUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeAssignUser.java new file mode 100644 index 00000000..d3d98fee --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeAssignUser.java @@ -0,0 +1,81 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 担保部记录 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_assign_user") +public class DgGuaranteeAssignUser implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 员工id + */ + private Integer empId; + + /** + * 类型(1:第一审批人 2:指派人AB角 3:第一审批人审核 3:经理) + */ + private Integer type; + + /** + * 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) + */ + private Integer status; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeInvestigation.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeInvestigation.java new file mode 100644 index 00000000..5cf31761 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeInvestigation.java @@ -0,0 +1,90 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 担保调查 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_investigation") +public class DgGuaranteeInvestigation implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 调查者id + */ + private Integer empId; + + /** + * 营业执照复印件 + */ + private String businessLicense; + + /** + * 上传法定代表人夫妻及企业实际经营者身份证复印件 + */ + private String legalCardCopy; + + /** + * 法定代表人夫妻户口本,结婚证(离婚证)复印件 + */ + private String marriageCopy; + + /** + * 法定代表人身份证明 + */ + private String legalCopy; + + /** + * 公司章程 + */ + private String companyConstitution; + + /** + * 会计师事务所审计的上一年度及本年度审计报告 + */ + private String accountingFirm; + + /** + * 股东会会议纪要 + */ + private String meetingMinutes; + + /** + * 谈话纪要 + */ + private String conversation; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeLetterConsider.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeLetterConsider.java new file mode 100644 index 00000000..60c3f6ba --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgGuaranteeLetterConsider.java @@ -0,0 +1,55 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 担保函确认 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_letter_consider") +public class DgGuaranteeLetterConsider implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 担保函确认者id + */ + private Integer empId; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLegalInfo.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLegalInfo.java new file mode 100644 index 00000000..0f373e58 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLegalInfo.java @@ -0,0 +1,64 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; + +/** + *

+ * 企业法人信息 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_legal_info") +public class DgLegalInfo implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 姓名 + */ + private String name; + + /** + * 身份证号码 + */ + private String card; + + /** + * 性别(1男 2女) + */ + private Integer gender; + + /** + * 联系电话 + */ + private String phone; + + /** + * 所在地:(用中划线拼接) + */ + private String province; + + /** + * 家庭住址 + */ + private String address; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanCommitteeConsider.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanCommitteeConsider.java new file mode 100644 index 00000000..7f9a50f2 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanCommitteeConsider.java @@ -0,0 +1,90 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 贷审会审议 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_loan_committee_consider") +public class DgLoanCommitteeConsider implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 审议者id + */ + private Integer considerId; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 贷审会议定事项 + */ + private String agreedItems; + + /** + * 贷审会附加事项 + */ + private String additionalItems; + + /** + * 贷款金额(贷审会意见) + */ + private Integer loanMoney; + + /** + * 贷款期限(贷审会意见) + */ + private String loanTern; + + /** + * 同意(贷审委员) + */ + private String agreePerson; + + /** + * 不同意(贷审委员) + */ + private String disagreePerson; + + /** + * 附件(会议记录) + */ + private String file; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanNotice.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanNotice.java new file mode 100644 index 00000000..d416c001 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgLoanNotice.java @@ -0,0 +1,60 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 放款通知 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_loan_notice") +public class DgLoanNotice implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 放款者id + */ + private Integer considerId; + + /** + * 审核意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageAssignUser.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageAssignUser.java new file mode 100644 index 00000000..516630df --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageAssignUser.java @@ -0,0 +1,81 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +/** + *

+ * 信息部记录 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_message_assign_user") +public class DgMessageAssignUser implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键ID + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业ID + */ + private Integer companyId; + + /** + * 员工id + */ + private Integer empId; + + /** + * 类型(1:第一审批人 2:指派人AB角 3:经理) + */ + private Integer type; + + /** + * 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) + */ + private Integer status; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private String remark; + + /** + * 审核意见 + */ + private String applyContent; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageInvestigation.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageInvestigation.java new file mode 100644 index 00000000..8a96965c --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgMessageInvestigation.java @@ -0,0 +1,65 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 信息调查 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_message_investigation") +public class DgMessageInvestigation implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 调查者id + */ + private Integer empId; + + /** + * 附件 + */ + private String file; + + /** + * 审核意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgPaymentConfirmationConsider.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgPaymentConfirmationConsider.java new file mode 100644 index 00000000..8bd14c63 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgPaymentConfirmationConsider.java @@ -0,0 +1,65 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 回款确认 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_payment_confirmation_consider") +public class DgPaymentConfirmationConsider implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 回款确认者id + */ + private Integer considerId; + + /** + * 审核意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 银行回单图片 + */ + private String imgFile; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcess.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcess.java new file mode 100644 index 00000000..b59d9cf2 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgProcess.java @@ -0,0 +1,56 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 业务流程表 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_process") +public class DgProcess implements Serializable { + + private static final long serialVersionUID = 1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 流程名 + */ + private String processName; + + /** + * 排序 + */ + private Integer sort; + + /** + * 类型(1默认 2自定义) + */ + private Integer type; + + /** + * html代码 + */ + private String htmlContont; + + /** + * 描述 + */ + private String remark; + + private Date createTime; + + private Date updateTime; +} diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgWorkConferenceConsider.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgWorkConferenceConsider.java new file mode 100644 index 00000000..2de75936 --- /dev/null +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/guarantee/DgWorkConferenceConsider.java @@ -0,0 +1,60 @@ +package com.daqing.framework.domain.guarantee; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 工作会审议 + *

+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_work_conference_consider") +public class DgWorkConferenceConsider implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 审议者id + */ + private Integer considerId; + + /** + * 工作会意见 + */ + private String remark; + + /** + * 审核状态 + */ + private Integer status; + + /** + * 创建时间 + */ + private Date createTime; + + /** + * 修改时间 + */ + private Date updateTime; +}