parent
fad4bfdb7c
commit
58b231cda0
18 changed files with 463 additions and 43 deletions
@ -0,0 +1,18 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import com.daqing.financial.guarantee.model.response.LoanNoticeListResponse; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/24 11:58 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class LoanNoticeListRequest { |
||||||
|
|
||||||
|
private List<LoanNoticeListResponse> loanNoticeListResponseList; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/24 10:58 |
||||||
|
* @Version 1.0 |
||||||
|
* 放款通知列表查询条件 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class LoanNoticeQueryRequest { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "当前页码,默认为第一页") |
||||||
|
private Integer page = 1; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "每页记录数,默认显示10条") |
||||||
|
private Integer size = 10; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "流程状态:1->审核中、2->拒绝、3->已审核") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "业务编号/客户名称") |
||||||
|
private String CustomerNumberOrName; |
||||||
|
|
||||||
|
@NotNull |
||||||
|
@ApiModelProperty(value = "角色ID") |
||||||
|
private Integer roleId; |
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/24 12:00 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class LoanNoticeUpdateRequest { |
||||||
|
|
||||||
|
@ApiModelProperty(value = "当前用户") |
||||||
|
private Integer currentUser; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "业务id") |
||||||
|
private Integer businessId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "状态") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "审核意见") |
||||||
|
private String auditOpinion; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,71 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.response; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.daqing.framework.utils.excel.ApprovalStatusConverter; |
||||||
|
import com.daqing.framework.utils.excel.BusinessStatusConverter; |
||||||
|
import com.daqing.framework.utils.excel.OperatingStatusConverter; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/24 11:01 |
||||||
|
* @Version 1.0 |
||||||
|
* 放款通知列表返回数据 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class LoanNoticeListResponse { |
||||||
|
|
||||||
|
@ApiModelProperty("唯一标识") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "审核意见") |
||||||
|
private String auditOpinion; |
||||||
|
|
||||||
|
@ApiModelProperty("银行名称") |
||||||
|
private String bank; |
||||||
|
|
||||||
|
@ApiModelProperty("业务编号") |
||||||
|
@ExcelProperty(value = "业务编号",index = 0) |
||||||
|
private String businessCode; |
||||||
|
|
||||||
|
@ApiModelProperty("客户名称") |
||||||
|
@ExcelProperty(value = "客户名称",index = 1) |
||||||
|
private String name; |
||||||
|
|
||||||
|
@ApiModelProperty("联系电话") |
||||||
|
@ExcelProperty(value = "联系电话",index = 2) |
||||||
|
private String phone; |
||||||
|
|
||||||
|
@ApiModelProperty("业务类别") |
||||||
|
@ExcelProperty(value = "业务类别",index = 3) |
||||||
|
private String businessType; |
||||||
|
|
||||||
|
@ApiModelProperty("金额") |
||||||
|
@ExcelProperty(value = "金额",index = 4) |
||||||
|
private Double applyAmount; |
||||||
|
|
||||||
|
@ApiModelProperty("期限") |
||||||
|
@ExcelProperty(value = "期数",index = 5) |
||||||
|
private String applyTime; |
||||||
|
|
||||||
|
@ApiModelProperty("申请日期") |
||||||
|
@ExcelProperty(value = "申请日期",index = 6) |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
@ApiModelProperty("审核状态") |
||||||
|
@ExcelProperty(value = "审核状态",index = 7,converter = ApprovalStatusConverter.class) |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@ApiModelProperty("业务状态") |
||||||
|
@ExcelProperty(value = "业务状态",index = 8,converter = BusinessStatusConverter.class) |
||||||
|
private Integer businessStatus; |
||||||
|
|
||||||
|
@ApiModelProperty("操作状态") |
||||||
|
@ExcelProperty(value = "操作状态",index = 9,converter = OperatingStatusConverter.class) |
||||||
|
private Integer operatingStatus; |
||||||
|
} |
Loading…
Reference in new issue