| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2023-07-17 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="Inspection对象", description="") |
| | | public class Inspection implements Serializable { |
| | |
| | | @ApiModelProperty(value = "报检编号") |
| | | private String id; |
| | | |
| | | @ApiModelProperty(value = "报检类型") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "报检状态 1:已检验;0未检验") |
| | | private Integer inspectionStatus; |
| | | |