Done ticket GEPAFINBE-128

This commit is contained in:
rajesh
2025-01-13 16:28:01 +05:30
parent 577055d169
commit f9e9673d93
18 changed files with 661 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
@Data
public class SummaryPageResponseBean {
private String username;
private String email;
private String role;
private LocalDateTime lastLogin;
private LocalDateTime registrationDate;
private Long numberOfLoginAttempts;
private Long applicationsProcessed;
private List<String> actionContextLabels;
private List<UserActionResponseBean> userActions;
}