package com.ruoyi.project.tr.specialCheck.domin;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("tb_base_check_task")
|
public class TbBaseCheckTask {
|
|
private String id;
|
|
private String taskName;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime taskStartTime;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime taskEndTime;
|
|
private String taskTypeName;
|
|
private String taskContent;
|
|
private Byte deleted;
|
|
private String createBy;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime createDate;
|
|
private String updateBy;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime updateDate;
|
|
private Integer status;
|
}
|