Done ticket GEPAFINBE-145
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Builder
|
||||
@Data
|
||||
public class ApplicationToConsider {
|
||||
|
||||
public Long totalAssignedApplication;
|
||||
|
||||
private BigDecimal additionalApplication;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Builder
|
||||
@Data
|
||||
public class AverageEvaluationTime {
|
||||
|
||||
private BigDecimal averageEvlauationDaysRating;
|
||||
|
||||
private BigDecimal timeDifferenceFromAverage;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Builder
|
||||
@Data
|
||||
public class EvaluatedApplication {
|
||||
|
||||
public Long evaluatedApplication;
|
||||
|
||||
private BigDecimal dailyAverage;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Builder
|
||||
@Data
|
||||
public class PreInstructorWidgetResponseBean {
|
||||
|
||||
private ApplicationToConsider assignedApplication;
|
||||
|
||||
private EvaluatedApplication evaluatedApplication;
|
||||
|
||||
private AverageEvaluationTime averageEvaluationDays;
|
||||
|
||||
private RescueInstructorInProgress amendmentInProgress;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Builder
|
||||
@Data
|
||||
public class RescueInstructorInProgress {
|
||||
|
||||
private Long totalAmendmentInProgress;
|
||||
|
||||
private Long expiringToday;
|
||||
}
|
||||
Reference in New Issue
Block a user