| 9 | import java.util.UUID; |
| 10 | |
| 11 | @Data |
| 12 | @Entity |
| 13 | @Table(name = "TB_EMAIL") |
| 14 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected