parent
b60901e757
commit
12561f35f6
22 changed files with 1547 additions and 0 deletions
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 申请贷款信息 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 价值评估列表 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 价值评估记录 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 资产部记录 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 资产调查 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 审核流程进程 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 合规调查记录 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 合规调查 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
|
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 附件 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 担保审核 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 担保经理审核 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 担保部记录 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 担保调查 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 担保函确认 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 企业法人信息 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 贷审会审议 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 放款通知 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 信息部记录 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 信息调查 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 回款确认 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 业务流程表 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
@ -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; |
||||||
|
|
||||||
|
/** |
||||||
|
* <p> |
||||||
|
* 工作会审议 |
||||||
|
* </p> |
||||||
|
* |
||||||
|
* @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; |
||||||
|
} |
Loading…
Reference in new issue