| | |
| | | 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_certification_file") |
| | | @ApiModel(value = "SafeCertificationFile对象", description = "安全生产--安全规程与资质管理--附件") |
| | | @Schema(name = "SafeCertificationFile对象", description = "安全生产--安全规程与资质管理--附件") |
| | | public class SafeCertificationFile implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty("关联安全生产资质id") |
| | | @Schema(description = "关联安全生产资质id") |
| | | @NotBlank(message = "关联安全生产资质id不能为空") |
| | | private Integer safeCertificationId; |
| | | |