Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ProjectCallSubmissionExtraData {
- // The planned start date for the project
- @JsonProperty(value = "start_date")
- private DateType startDate;
- // The planned end date for the project
- @JsonProperty(value = "end_date")
- private DateType endDate;
- // The user that submitted the project call submission in the current system
- @JsonProperty(value = "system_entry_user")
- private User systemEntryUser;
- // The date when the application was submitted in the current system
- @Column(name = "system_entry_date")
- private Date systemEntryDate;
- // The status of the project call submission
- @JsonProperty(value = "status")
- private ProjectCallSubmissionStatusEnum status;
- // Approved submission
- // The status of the approved project call submission (only for submissions with the status attribute 'APPROVED')
- @JsonProperty(value = "approved_status")
- private ProjectCallSubmissionApprovedStatusEnum approvedStatus;
- // The date in which the approved submission was signed
- @JsonProperty(value = "approved_status_date")
- private DateType approvedStatusDate;
- // The evaluation result of the project call submission
- @JsonProperty(value = "evaluation_result")
- private String evaluationResult;
- // The total approved budget for the project
- @JsonProperty(value = "total_funding")
- private CurrencyAmount totalFunding;
- // The approved pre-budget for the project
- @JsonProperty(value = "local_pre_funding")
- private CurrencyAmount localPreFunding;
- // The approved local budget for the project
- @JsonProperty(value = "local_funding")
- private CurrencyAmount localFunding;
- // Additional comments regarding the project call submission
- @JsonProperty(value = "comments")
- private String comments;
- // Human resources and budget
- // The total amount requested for Human Resources
- @JsonProperty(value = "total_hr_value")
- private CurrencyAmount totalHrValue;
- // The total person-months allocated to the project
- @JsonProperty(value = "team_person_months")
- private Double teamPersonMonths;
- // The number of HR expected for the project
- @JsonProperty(value = "number_of_expected_human_resources")
- private Integer numberOfExpectedHumanResources;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement