Merge pull request #367 from Kitzanos/feature/GEPAFINBE-6141

GEPAFINBE-6141 (Created director user and GET endpoint for Email log)
This commit is contained in:
rajeshkhore
2025-11-07 18:52:40 +05:30
committed by GitHub
16 changed files with 430 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
@Data
public class EmailLogResponse {
private String recipientType;
private Long recipientId;
}

View File

@@ -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;
}

View File

@@ -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;
}