Done ticket GEPAFINBE-8
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
public class CallResponseBean {
|
||||
|
||||
|
||||
private Long id;
|
||||
|
||||
private String title;
|
||||
|
||||
private String description;
|
||||
|
||||
private LocalDateTime startDate;
|
||||
|
||||
private LocalDateTime endDate;
|
||||
|
||||
private String status;
|
||||
|
||||
private RegionResponseBean region;
|
||||
|
||||
private BigDecimal fundingAmount;
|
||||
|
||||
private String contactInfo;
|
||||
|
||||
private String submissionMethod;
|
||||
|
||||
private Integer totalScore;
|
||||
|
||||
private Integer minimumScore;
|
||||
|
||||
private String priorityArea;
|
||||
|
||||
private LocalDateTime createdDate;
|
||||
|
||||
private LocalDateTime updatedDate;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user