package com.ycl.platform.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ycl.platform.base.AbsEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 报备故障类型
|
*
|
* @author:xp
|
* @date:2024/9/1 15:42
|
*/
|
@Data
|
@TableName("t_report_error_type")
|
public class ReportErrorType {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(value = "create_time",fill = FieldFill.INSERT)
|
private Date createTime;
|
|
@TableField("report_id")
|
private Integer reportId;
|
|
@TableField("error_type")
|
private String errorType;
|
|
/**
|
* 逻辑删除
|
*/
|
@TableField(value = "deleted", fill = FieldFill.INSERT)
|
private Integer deleted;
|
}
|