| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="InspectionProductList对象", description="") |
| | | @Accessors(chain = true) |
| | | public class InspectionProductList implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private String internal; |
| | | |
| | | @ApiModelProperty(value = "开始日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime startTime; |
| | | |
| | | @ApiModelProperty(value = "结束日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime endTime; |
| | | |
| | | @TableLogic(value = "1", delval = "0") |
| | |
| | | private Integer version; |
| | | |
| | | @ApiModelProperty(value = "关联 报检id") |
| | | private String inspectionId; |
| | | private int inspectionMaterialListId; |
| | | |
| | | @ApiModelProperty(value = "关联 用户id 试验员") |
| | | private Integer userId; |
| | | |
| | | |
| | | @ApiModelProperty(value = "关联 设备id") |
| | | private Integer instrument_id; |
| | | } |