add
gdg
2020-10-30 9222b2db700cd25e46b67c2a3c05fffd3817cc64
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.nanometer.smartlab.entity;
 
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
import com.nanometer.smartlab.entity.enumtype.EmailSendStatus;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * Created by wjd on 18/06/17.
 */
public class EmailStatus implements Serializable {
 
    private String id;
    private String orderCode;
    private String applyCode;
    private String reagentId;
    private Integer num;
    private String applyUserId;
    private EmailSendStatus status;
    private Timestamp createTime;
    private Timestamp updateTime;
 
    private String EmailAddress;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getOrderCode() {
        return orderCode;
    }
 
    public void setOrderCode(String orderCode) {
        this.orderCode = orderCode;
    }
 
    public String getApplyCode() {
        return applyCode;
    }
 
    public void setApplyCode(String applyCode) {
        this.applyCode = applyCode;
    }
 
    public String getReagentId() {
        return reagentId;
    }
 
    public void setReagentId(String reagentId) {
        this.reagentId = reagentId;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public String getApplyUserId() {
        return applyUserId;
    }
 
    public void setApplyUserId(String applyUserId) {
        this.applyUserId = applyUserId;
    }
 
    public EmailSendStatus getStatus() {
        return status;
    }
 
    public void setStatus(EmailSendStatus status) {
        this.status = status;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
 
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getEmailAddress() {
        return EmailAddress;
    }
 
    public void setEmailAddress(String emailAddress) {
        EmailAddress = emailAddress;
    }
}