Created director user and get API for email log
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class EmailLogResponse {
|
||||
|
||||
private String recipientType;
|
||||
|
||||
private Long recipientId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class PecEmailLogResponse {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long userActionId;
|
||||
|
||||
private Long userId;
|
||||
|
||||
private Long applicationId;
|
||||
|
||||
private String callName;
|
||||
|
||||
private EmailLogResponse emailLogs;
|
||||
|
||||
private String type;
|
||||
|
||||
private String subject;
|
||||
|
||||
private String htmlContent;
|
||||
|
||||
private Long callId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class PecMailResponse {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long userActionId;
|
||||
|
||||
private Long userId;
|
||||
|
||||
private Long applicationId;
|
||||
|
||||
private String callName;
|
||||
|
||||
private String type;
|
||||
|
||||
private String subject;
|
||||
|
||||
private String htmlContent;
|
||||
|
||||
private Long callId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user