# Conflicts: # dq-financial-crms/src/main/resources/bootstrap.properties # dq-financial-guarantee/src/main/resources/bootstrap.properties # dq-financial-hrms-auth/src/main/resources/bootstrap.propertiesmaster
commit
5e79ce0b9c
108 changed files with 454 additions and 22 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,43 @@ |
|||||||
|
package com.daqing.financial.crms.model.response; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.ToString; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请记录响应类 |
||||||
|
* |
||||||
|
* @auther River |
||||||
|
* @date 2021/2/22 11:33 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ToString |
||||||
|
public class ApplicationRecordResponse implements Serializable { |
||||||
|
|
||||||
|
@ApiModelProperty("id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty("客户类型") |
||||||
|
private Integer type; |
||||||
|
|
||||||
|
@ApiModelProperty("贷款用途") |
||||||
|
private String amountWide; |
||||||
|
|
||||||
|
@ApiModelProperty("申请额度") |
||||||
|
private Double applyAmount; |
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
|
@ApiModelProperty("申请日期") |
||||||
|
private Date applyDate; |
||||||
|
|
||||||
|
@ApiModelProperty("申请期限") |
||||||
|
private String applyTime; |
||||||
|
|
||||||
|
@ApiModelProperty("状态,0:已完成,1:已受理,2:审核中,3:拒绝,4:驳回,5:撤销") |
||||||
|
private Integer status; |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package com.daqing.financial.crms.model.response; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.ToString; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请记录详情返回类 |
||||||
|
* |
||||||
|
* @auther River |
||||||
|
* @date 2021/2/24 10:12 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ToString |
||||||
|
public class ApplyDetailResponse implements Serializable { |
||||||
|
|
||||||
|
@ApiModelProperty("状态") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@ApiModelProperty("审核意见/拒绝、驳回意见") |
||||||
|
private String remark; |
||||||
|
|
||||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,50 @@ |
|||||||
|
package com.daqing.framework.domain.crms.ext; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.ToString; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请记录接收类 |
||||||
|
* |
||||||
|
* @auther River |
||||||
|
* @date 2021/2/22 14:11 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ToString |
||||||
|
public class ApplicationRecordPO implements Serializable { |
||||||
|
|
||||||
|
private Integer id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请日期 |
||||||
|
*/ |
||||||
|
private Date applyDate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请额度 |
||||||
|
*/ |
||||||
|
private Double applyAmount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 贷款用途 |
||||||
|
*/ |
||||||
|
private String amountWide; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请期限 |
||||||
|
*/ |
||||||
|
private String applyTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务状态 |
||||||
|
*/ |
||||||
|
private Integer businessStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 审批状态(是否受理) |
||||||
|
*/ |
||||||
|
private Integer auditStatus; |
||||||
|
} |
@ -0,0 +1,33 @@ |
|||||||
|
package com.daqing.framework.domain.crms.ext; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
import lombok.ToString; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取申请记录详情持久层接收类 |
||||||
|
* |
||||||
|
* @auther River |
||||||
|
* @date 2021/2/24 10:25 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ToString |
||||||
|
public class ApplyDetailPO implements Serializable { |
||||||
|
|
||||||
|
/** |
||||||
|
* 审核状态 |
||||||
|
*/ |
||||||
|
private Integer auditStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 业务状态 |
||||||
|
*/ |
||||||
|
private Integer businessStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 审核意见 |
||||||
|
*/ |
||||||
|
private String remark; |
||||||
|
|
||||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue