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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.nanometer.smartlab.entity;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.util.List;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
import lombok.Getter;
import lombok.Setter;
 
/**
 * Created by johnny on 17/12/15.
 */
@Getter
@Setter
@SuppressWarnings("serial")
@JsonIgnoreProperties(value = {"handler"})
public class OpeWarehouseReserve implements Serializable {
 
    private Long id;
    private Long reagentId;
    private String articleNumber;
    private Integer reserve;
    private Timestamp updateTime;
    private ValidFlag validFlag;
    private String applyCode;
    private String orderCode;
    private Long warehouseId;
    private Long containerId;
    private Long userId;
 
 
 
    //非数据库字段
    private Integer selectNum;
    private BigDecimal startReagentCode;
    private BigDecimal endReagentCode;
    private Integer flag;
    private String warehouseName;
    private String startReagentCode2;
    private String endReagentCode2;
    /**
     * 补贴条码的暂存领用数量
     */
    public Integer useNum;
    private List<String> reagentCodes;
    private SysReagent reagent;
}