zhangfeng
2022-12-23 f7d2f20365467a834188edd35c464d9fb9349214
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.gkhy.safePlatform.equipment.entity;
 
import java.time.LocalDateTime;
import java.util.List;
 
public class SafeMaterialBatchDeliveryBO {
    private List<Long> ids;
    private Integer count;
    private Byte irStatus;
 
    private Long receiveUid;
 
    private String receiveUname;
 
    private LocalDateTime deliveryTime;
 
    public List<Long> getIds() {
        return ids;
    }
 
    public void setIds(List<Long> ids) {
        this.ids = ids;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
 
    public Byte getIrStatus() {
        return irStatus;
    }
 
    public void setIrStatus(Byte irStatus) {
        this.irStatus = irStatus;
    }
 
 
    public Long getReceiveUid() {
        return receiveUid;
    }
 
    public void setReceiveUid(Long receiveUid) {
        this.receiveUid = receiveUid;
    }
 
    public String getReceiveUname() {
        return receiveUname;
    }
 
    public void setReceiveUname(String receiveUname) {
        this.receiveUname = receiveUname;
    }
 
    public LocalDateTime getDeliveryTime() {
        return deliveryTime;
    }
 
    public void setDeliveryTime(LocalDateTime deliveryTime) {
        this.deliveryTime = deliveryTime;
    }
}