Created director user and get API for email log

This commit is contained in:
rajesh
2025-11-07 18:10:43 +05:30
parent 6600c5b319
commit 98cdda457d
16 changed files with 430 additions and 6 deletions

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