Done ticket GEPAFINBE-141

This commit is contained in:
Piyush
2025-01-21 14:21:57 +05:30
parent 511e8fbc27
commit e1f1ffd69e
12 changed files with 223 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Builder;
import lombok.Data;
import java.math.BigDecimal;
@Builder
@Data
public class AmendmentWidgetResponseBean {
private Long totalAmendments;
private Long waitingForResponseAmendments;
private Long responseReceivedAmendments;
private BigDecimal averageResponseDays;
private Long expiringRequestsIn48Hours;
private Long expiredAmendments;
}