updated code

This commit is contained in:
rajesh
2025-01-14 13:13:39 +05:30
parent efcf8e7755
commit e9df9cdb44
14 changed files with 325 additions and 238 deletions

View File

@@ -0,0 +1,12 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import net.gepafin.tendermanagement.enums.UserActionContextEnum;
@Data
public class ActionContextLabelResponse {
private Long id;
private UserActionContextEnum actionContext;
private Long roleId;
private Boolean isViewed;
private String description;
}

View File

@@ -14,6 +14,5 @@ public class SummaryPageResponseBean {
private LocalDateTime registrationDate;
private Long numberOfLoginAttempts;
private Long applicationsProcessed;
private List<String> actionContextLabels;
private List<UserActionResponseBean> userActions;
}