package com.ruoyi.safe.pojo; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.time.LocalDateTime; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; import org.springframework.format.annotation.DateTimeFormat; /** *

* 安全生产--线路巡检隐患 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-06-29 */ @Getter @Setter @TableName("safe_line_inspection_hazard") @Schema(name = "SafeLineInspectionHazard对象", description = "安全生产--线路巡检隐患") public class SafeLineInspectionHazard implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; @Schema(description = "巡检任务ID") private Integer inspectionId; @Schema(description = "巡检记录ID") private Integer recordId; @Schema(description = "隐患编号") private String hazardCode; @Schema(description = "隐患描述") private String hazardDesc; @Schema(description = "隐患等级") private String hazardLevel; @Schema(description = "隐患位置") private String hazardLocation; @Schema(description = "隐患图片") private String hazardImage; @Schema(description = "状态(待整改/整改中/已整改)") private String status; @Schema(description = "整改责任人ID") private Integer rectifyUserId; @Schema(description = "整改时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime rectifyTime; @Schema(description = "整改说明") private String rectifyDesc; @Schema(description = "创建时间") @TableField(fill = FieldFill.INSERT) @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime createTime; @Schema(description = "创建人ID") @TableField(fill = FieldFill.INSERT) private Integer createUser; @TableField(fill = FieldFill.INSERT) private Integer tenantId; @TableField(fill = FieldFill.INSERT) private Long deptId; @TableField(exist = false) private String rectifyUserName; }