package com.gkhy.safePlatform.safeCheck.model.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.io.Serializable; import java.util.Date; public class SafeCheckTaskUnitPageRespDTO implements Serializable { private Long id; //任务单元名字 private String unitName; //作业类型:1-周期性作业;2-日常作业 private Byte workType; //任务单元状态:1-开启;2-关闭,3-过期 private Byte taskUnitStatus; //巡检周期-数值 private int checkCycle; //文档地址 private String fileAddress; //时间单位:1-分钟,2-小时,3-日,4-月,5-年 private String checkCycleUnit; //巡检链中的巡检点的个数 private int pointsLength; //执行班组ID private Long execClassgroupId; //作业调度起始时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date firstStartTime; //创建人 private String createUserName; //创建时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date gmtCreate; //修改时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date gmtModitify; //最后修改人 private String lastEditUserName; public String getFileAddress() { return fileAddress; } public void setFileAddress(String fileAddress) { this.fileAddress = fileAddress; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getUnitName() { return unitName; } public void setUnitName(String unitName) { this.unitName = unitName; } public Byte getWorkType() { return workType; } public void setWorkType(Byte workType) { this.workType = workType; } public Byte getTaskUnitStatus() { return taskUnitStatus; } public void setTaskUnitStatus(Byte taskUnitStatus) { this.taskUnitStatus = taskUnitStatus; } public Long getExecClassgroupId() { return execClassgroupId; } public void setExecClassgroupId(Long execClassgroupId) { this.execClassgroupId = execClassgroupId; } public Date getGmtModitify() { return gmtModitify; } public void setGmtModitify(Date gmtModitify) { this.gmtModitify = gmtModitify; } public String getLastEditUserName() { return lastEditUserName; } public void setLastEditUserName(String lastEditUserName) { this.lastEditUserName = lastEditUserName; } public int getCheckCycle() { return checkCycle; } public void setCheckCycle(int checkCycle) { this.checkCycle = checkCycle; } public String getCheckCycleUnit() { return checkCycleUnit; } public void setCheckCycleUnit(String checkCycleUnit) { this.checkCycleUnit = checkCycleUnit; } public int getPointsLength() { return pointsLength; } public void setPointsLength(int pointsLength) { this.pointsLength = pointsLength; } public Date getFirstStartTime() { return firstStartTime; } public void setFirstStartTime(Date firstStartTime) { this.firstStartTime = firstStartTime; } public String getCreateUserName() { return createUserName; } public void setCreateUserName(String createUserName) { this.createUserName = createUserName; } public Date getGmtCreate() { return gmtCreate; } public void setGmtCreate(Date gmtCreate) { this.gmtCreate = gmtCreate; } }