Created CRUD for ApplicationEvaluation Entity

This commit is contained in:
harish
2024-10-26 13:53:21 +05:30
parent 863e2db68d
commit f152241e15
27 changed files with 1070 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
package net.gepafin.tendermanagement.model.response;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
public class FieldResponse {
private String id;
private String label;
private Boolean valid;
}