| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.safe.pojo.SafeHazardRecord; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | |
| | | @Data |
| | | public class SafeHazardRecordDto extends SafeHazardRecord { |
| | | |
| | | @ApiModelProperty("领用人") |
| | | @Schema(description = "领用人") |
| | | private String applyUserName; |
| | | |
| | | @ApiModelProperty("归还人") |
| | | @Schema(description = "归还人") |
| | | private String returnUserName; |
| | | |
| | | @ApiModelProperty("危险源名称") |
| | | @Schema(description = "危险源名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty("危险源编码") |
| | | @Schema(description = "危险源编码") |
| | | private String code; |
| | | |
| | | @ApiModelProperty("危险源类型") |
| | | @Schema(description = "危险源类型") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("风险等级") |
| | | @Schema(description = "风险等级") |
| | | private String riskLevel; |
| | | |
| | | @ApiModelProperty("所在位置") |
| | | @Schema(description = "所在位置") |
| | | private String location; |
| | | |
| | | |