From 47a751cb301d05276ae5d75145d57b2d090fe4e1 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: Mon, 01 Jul 2024 10:58:35 +0800
Subject: [PATCH] change
---
src/main/java/com/nanometer/smartlab/entity/EmailStatus.java | 91 ++++-----------------------------------------
1 files changed, 8 insertions(+), 83 deletions(-)
diff --git a/src/main/java/com/nanometer/smartlab/entity/EmailStatus.java b/src/main/java/com/nanometer/smartlab/entity/EmailStatus.java
index fc2b4ce..de772d4 100644
--- a/src/main/java/com/nanometer/smartlab/entity/EmailStatus.java
+++ b/src/main/java/com/nanometer/smartlab/entity/EmailStatus.java
@@ -3,6 +3,8 @@
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
import com.nanometer.smartlab.entity.enumtype.EmailSendStatus;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
+import lombok.Getter;
+import lombok.Setter;
import java.io.Serializable;
import java.sql.Timestamp;
@@ -10,97 +12,20 @@
/**
* Created by wjd on 18/06/17.
*/
+@Getter
+@Setter
public class EmailStatus implements Serializable {
- private String id;
+ private Long id;
private String orderCode;
private String applyCode;
- private String reagentId;
+ private Long reagentId;
private Integer num;
- private String applyUserId;
+ private Long 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;
- }
}
--
Gitblit v1.9.2