InspectionTaskVO.java 6.4 KB
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;
}