审计记录

sk-module-inspection/src/main/java/com/skua/modules/inspection/vo/InspectionTaskVO.java 6.4 KB
张雷 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
package com.skua.modules.inspection.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;

import java.util.Date;

/**
 * @program: skboot
 * @description:
 * @author: xie chao
 * @create: 2020-12-14 15:02
 */
@Data
public class InspectionTaskVO {

    /**主键*/
    @ApiModelProperty(value = "主键")
    private String id;
    /**计划ID*/
    @Excel(name = "计划ID", width = 15)
    @ApiModelProperty(value = "计划ID")
    @Dict(dictTable = "inspection_plan", dicCode = "id", dicText = "plan_name")
    private String inspectionPlanId;
    /**任务开始时间*/
    @Excel(name = "任务开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "任务开始时间")
    private Date taskStartTime;
    /**任务结束时间*/
    @Excel(name = "任务结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "任务结束时间")
    private Date taskEndTime;
    /**任务状态(0:进行中,1:已完成)*/
    @Excel(name = "任务状态(0:进行中,1:已完成)", width = 15)
    @ApiModelProperty(value = "任务状态(0:进行中,1:已完成)")
    @Dict(dicCode = "inspection_task_status")
    private String taskState;
    /**巡检周期*/
    @Excel(name = "巡检周期", width = 15)
    @ApiModelProperty(value = "巡检周期")
    private Integer inspectionCycleIndex;
    /**巡检周期开始日期*/
    @Excel(name = "巡检周期开始日期", width = 15)
    @ApiModelProperty(value = "巡检周期开始日期")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    private Date inspectionCycleStartDate;
    /**任务开始用户*/
    @Excel(name = "任务开始用户", width = 15)
    @ApiModelProperty(value = "任务开始用户")
    @Dict(dictTable = "sys_user", dicCode = "id", dicText = "realname")
    private String taskStartUser;
    /**任务结束用户*/
    @Excel(name = "任务结束用户", width = 15)
    @ApiModelProperty(value = "任务结束用户")
    private String taskEndUser;
    /**任务名称*/
    @Excel(name = "任务名称", width = 15)
    @ApiModelProperty(value = "任务名称")
    private String taskName;
    /**计划名称*/
    @Excel(name = "计划名称", width = 15)
    @ApiModelProperty(value = "计划名称")
    private String planName;
    /**任务类型(1:周期任务,2:单次常规任务)*/
    @Excel(name = "任务类型(1:周期任务,2:单次常规任务)", width = 15)
    @ApiModelProperty(value = "任务类型(1:周期任务,2:单次常规任务)")
    @Dict(dicCode = "inspection_task_type")
    private String taskType;
    /**计划开始时间*/
    @Excel(name = "计划开始时间", width = 20, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "计划开始时间")
    private Date planStartDate;
    /**计划结束时间*/
    @Excel(name = "计划结束时间", width = 20, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "计划结束时间")
    private Date planEndDate;
    /**计划任务开始时间*/
    @Excel(name = "计划任务开始时间", width = 20)
    @ApiModelProperty(value = "计划任务开始时间")
    private String planTaskStartTime;
    /**持续时间(h)*/
    @Excel(name = "持续时间(h)", width = 15)
    @ApiModelProperty(value = "持续时间(h)")
    private String continueTime;
    /**任务时长(h)*/
    @Excel(name = "任务时长(h)", width = 15)
    @ApiModelProperty(value = "任务时长(h)")
    private String taskDuration;
    /**厂站ID*/
    @Excel(name = "厂站ID", width = 15)
    @ApiModelProperty(value = "厂站ID")
    @Dict(dictTable = "sys_depart", dicCode = "id", dicText = "depart_name")
    private String departId;
    /**版块类型*/
    @Excel(name = "版块类型", width = 15)
    @ApiModelProperty(value = "版块类型")
    private String moduleType;
    /**班组ID*/
    @Excel(name = "班组ID", width = 15)
    @ApiModelProperty(value = "班组ID")
    @Dict(dictTable = "inspection_working_group", dicCode = "id", dicText = "group_name")
    private String inspectionWorkingGroupId;
    /**班组名称*/
    @Excel(name = "班组名称", width = 15)
    @ApiModelProperty(value = "班组名称")
    private String inspectionWorkingGroupName;
    /**创建时间*/
    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**创建用户ID*/
    @Excel(name = "创建用户ID", width = 15)
    @ApiModelProperty(value = "创建用户ID")
    private String createBy;
    /**修改时间*/
    @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "修改时间")
    private Date updateTime;
    /**修改用户ID*/
    @Excel(name = "修改用户ID", width = 15)
    @ApiModelProperty(value = "修改用户ID")
    private String updateBy;
    /**所属部门*/
    @Excel(name = "所属部门", width = 15)
    @ApiModelProperty(value = "所属部门")
    private String createDept;
    /**所属公司*/
    @Excel(name = "所属公司", width = 15)
    @ApiModelProperty(value = "所属公司")
    private String createCmpy;
    /**删除标识(0:删除,1:有效)*/
    @Excel(name = "删除标识(0:删除,1:有效)", width = 15)
    @ApiModelProperty(value = "删除标识(0:删除,1:有效)")
    private String delFlag;

    /**开始时间*/
    private String startTime;

    /**结束时间*/
    private String endTime;

    /**班组名称*/
    private String groupName;
}