|
@ -73,6 +73,8 @@ public class TaskVo { |
|
|
private Byte routineLocation; |
|
|
private Byte routineLocation; |
|
|
@ApiModelProperty("入参") |
|
|
@ApiModelProperty("入参") |
|
|
private String importParam; |
|
|
private String importParam; |
|
|
|
|
|
@ApiModelProperty("任务配置") |
|
|
|
|
|
private ProTaskShow proTaskConfig = new ProTaskShow(); |
|
|
public Long getDuration(){ |
|
|
public Long getDuration(){ |
|
|
if(ObjectUtil.isNotNull(beginTime) && ObjectUtil.isNotNull(endTime)) { |
|
|
if(ObjectUtil.isNotNull(beginTime) && ObjectUtil.isNotNull(endTime)) { |
|
|
return endTime - beginTime; |
|
|
return endTime - beginTime; |
|
@ -101,6 +103,10 @@ public class TaskVo { |
|
|
private Long executorRole; |
|
|
private Long executorRole; |
|
|
@ApiModelProperty("负责人名称") |
|
|
@ApiModelProperty("负责人名称") |
|
|
private String executorRoleName; |
|
|
private String executorRoleName; |
|
|
|
|
|
@ApiModelProperty("检查人Id") |
|
|
|
|
|
private Long checkerRole; |
|
|
|
|
|
@ApiModelProperty("检查人名称") |
|
|
|
|
|
private String checkerRoleName; |
|
|
@ApiModelProperty("开始时间") |
|
|
@ApiModelProperty("开始时间") |
|
|
private Long beginTime; |
|
|
private Long beginTime; |
|
|
@ApiModelProperty("结束时间") |
|
|
@ApiModelProperty("结束时间") |
|
|