kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.nanometer.smartlab.entity;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.sql.Timestamp;
@Getter
@Setter
@JsonIgnoreProperties(value = {"handler"})
public class OpeLaboratoryReserve implements Serializable {
    private Long id;
    private Long reagentId;
    private String articleNumber;
    private ValidFlag validFlag;
    private Timestamp updateTime;
    private Integer reserve;
    private Long userId;
    private Long houseId;
    private Long containerId;
}