MCPcopy Create free account
hub / github.com/MichelliBrito/ms-email / EmailModel

Class EmailModel

src/main/java/com/ms/email/models/EmailModel.java:11–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import java.util.UUID;
10
11@Data
12@Entity
13@Table(name = "TB_EMAIL")
14public class EmailModel implements Serializable {
15 private static final long serialVersionUID = 1L;
16
17 @Id
18 @GeneratedValue(strategy= GenerationType.AUTO)
19 private UUID emailId;
20 private String ownerRef;
21 private String emailFrom;
22 private String emailTo;
23 private String subject;
24 @Column(columnDefinition = "TEXT")
25 private String text;
26 private LocalDateTime sendDateEmail;
27 private StatusEmail statusEmail;
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected