|
|
|
@ -26,38 +26,38 @@ public class PersonalEfficiencyListResponse { |
|
|
|
|
private Integer applicantId; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "提单人") |
|
|
|
|
@ExcelProperty(value = "提单人",index = 1) |
|
|
|
|
@ExcelProperty(value = "提单人",index = 0) |
|
|
|
|
private String applicant; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("客户名称") |
|
|
|
|
@ExcelProperty(value = "客户名称",index = 2) |
|
|
|
|
@ExcelProperty(value = "客户名称",index = 1) |
|
|
|
|
private String clientName; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("申请日期") |
|
|
|
|
@ExcelProperty(value = "申请日期",index = 3) |
|
|
|
|
@ExcelProperty(value = "申请日期",index = 2) |
|
|
|
|
private String applicationDate; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("累计耗时") |
|
|
|
|
@ExcelProperty(value = "累计耗时",index = 4) |
|
|
|
|
@ExcelProperty(value = "累计耗时",index = 3) |
|
|
|
|
private String timeConsuming; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("完成时间") |
|
|
|
|
@ExcelProperty(value = "完成时间",index = 5) |
|
|
|
|
@ExcelProperty(value = "完成时间",index = 4) |
|
|
|
|
private String completeTime; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("任务节点") |
|
|
|
|
@ExcelProperty(value = "任务节点",index = 6,converter = TaskNodeConverter.class) |
|
|
|
|
@ExcelProperty(value = "任务节点",index = 5,converter = TaskNodeConverter.class) |
|
|
|
|
private String taskNode; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("审批状态") |
|
|
|
|
@ExcelProperty(value = "审批状态",index = 7,converter = ApprovalStatusConverter.class) |
|
|
|
|
@ExcelProperty(value = "审批状态",index = 6,converter = ApprovalStatusConverter.class) |
|
|
|
|
private Integer approveStatus; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("业务状态") |
|
|
|
|
@ExcelProperty(value = "业务状态",index = 8,converter = BusinessStatusConverter.class) |
|
|
|
|
@ExcelProperty(value = "业务状态",index = 7,converter = BusinessStatusConverter.class) |
|
|
|
|
private Integer businessStatus; |
|
|
|
|
|
|
|
|
|
@ApiModelProperty("操作状态") |
|
|
|
|
@ExcelProperty(value = "操作状态",index = 9,converter = OperatingStatusConverter.class) |
|
|
|
|
@ExcelProperty(value = "操作状态",index = 8,converter = OperatingStatusConverter.class) |
|
|
|
|
private Integer operatingStatus; |
|
|
|
|
} |
|
|
|
|