master
parent
01287aa2af
commit
4c3dd6ab02
16 changed files with 487 additions and 112 deletions
@ -0,0 +1,32 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2021/1/18 9:57 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class CopyForMeRequest { |
||||||
|
|
||||||
|
@ApiModelProperty("申请时间,固定类型,0:今天,1:昨天,2:本周,3:本月,4:本年") |
||||||
|
private Integer createFixedTime; |
||||||
|
|
||||||
|
@ApiModelProperty("客户名称") |
||||||
|
private String clientName; |
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
|
@ApiModelProperty("起始时间") |
||||||
|
private String startTime; |
||||||
|
|
||||||
|
@ApiModelProperty("用户id") |
||||||
|
private Integer userId; |
||||||
|
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
|
@ApiModelProperty("结束时间") |
||||||
|
private String endTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2021/1/18 16:15 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class CopySendRequest { |
||||||
|
|
||||||
|
private Integer businessId; |
||||||
|
|
||||||
|
private Integer processId; |
||||||
|
|
||||||
|
private String imgData; |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2021/1/18 9:33 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class CopySendUserRequest { |
||||||
|
|
||||||
|
private Integer processId; |
||||||
|
|
||||||
|
private List<Integer> userIds; |
||||||
|
} |
@ -0,0 +1,61 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.response; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.daqing.framework.utils.excel.BusinessStatusConverter; |
||||||
|
import com.daqing.framework.utils.excel.TaskNodeConverter; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2021/1/18 9:56 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class CopyForMeResponse { |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "提单人id") |
||||||
|
private Integer applicantId; |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "审批人id") |
||||||
|
private Integer approveId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "提单人") |
||||||
|
@ExcelProperty(value = "提单人",index = 0) |
||||||
|
private String applicant; |
||||||
|
|
||||||
|
@ApiModelProperty("客户名称") |
||||||
|
@ExcelProperty(value = "客户名称",index = 1) |
||||||
|
private String clientName; |
||||||
|
|
||||||
|
@ApiModelProperty("申请日期") |
||||||
|
@ExcelProperty(value = "申请日期",index = 2) |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
|
private String applicationDate; |
||||||
|
|
||||||
|
@ApiModelProperty("任务节点") |
||||||
|
@ExcelProperty(value = "任务节点",index = 3,converter = TaskNodeConverter.class) |
||||||
|
private String taskNode; |
||||||
|
|
||||||
|
@ApiModelProperty("审批人") |
||||||
|
@ExcelProperty(value = "审批人",index = 4) |
||||||
|
private String approve; |
||||||
|
|
||||||
|
@ApiModelProperty("审批时间") |
||||||
|
@ExcelProperty(value = "审批时间",index = 5) |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
|
private String approveDate; |
||||||
|
|
||||||
|
@ApiModelProperty("业务状态") |
||||||
|
@ExcelProperty(value = "业务状态",index = 6,converter = BusinessStatusConverter.class) |
||||||
|
private Integer businessStatus; |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty("截图路径") |
||||||
|
private String picUrl; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue