zss
2023-07-26 f330903e12d38af89d61f16c96856924d241a0f2
inspection-server/src/main/java/com/yuanchu/limslaboratory/pojo/InspectionProductList.java
@@ -11,6 +11,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
 * <p>
@@ -23,6 +24,7 @@
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="InspectionProductList对象", description="")
@Accessors(chain = true)
public class InspectionProductList implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -50,9 +52,11 @@
    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")
@@ -72,10 +76,11 @@
    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;
}