| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("safe_hidden_file") |
| | | @ApiModel(value = "SafeHiddenFile对象", description = "安全生产--隐患排查上报--附件") |
| | | @Schema(name = "SafeHiddenFile对象", description = "安全生产--隐患排查上报--附件") |
| | | public class SafeHiddenFile implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("关联隐患排查上报id") |
| | | @Schema(description = "关联隐患排查上报id") |
| | | private Integer safeHiddenId; |
| | | |
| | | private String name; |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer tenantId; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |