Advertisement
IronJoo

Untitled

Feb 14th, 2025
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.33 KB | None | 0 0
  1. public class ProjectCallSubmissionExtraData {
  2.  
  3.     // The planned start date for the project
  4.     @JsonProperty(value = "start_date")
  5.     private DateType startDate;
  6.  
  7.     // The planned end date for the project
  8.     @JsonProperty(value = "end_date")
  9.     private DateType endDate;
  10.  
  11.     // The user that submitted the project call submission in the current system
  12.     @JsonProperty(value = "system_entry_user")
  13.     private User systemEntryUser;
  14.  
  15.     // The date when the application was submitted in the current system
  16.     @Column(name = "system_entry_date")
  17.     private Date systemEntryDate;
  18.  
  19.     // The status of the project call submission
  20.     @JsonProperty(value = "status")
  21.     private ProjectCallSubmissionStatusEnum status;
  22.  
  23.     // Approved submission
  24.  
  25.     // The status of the approved project call submission (only for submissions with the status attribute 'APPROVED')
  26.     @JsonProperty(value = "approved_status")
  27.     private ProjectCallSubmissionApprovedStatusEnum approvedStatus;
  28.  
  29.     // The date in which the approved submission was signed
  30.     @JsonProperty(value = "approved_status_date")
  31.     private DateType approvedStatusDate;
  32.  
  33.     // The evaluation result of the project call submission
  34.     @JsonProperty(value = "evaluation_result")
  35.     private String evaluationResult;
  36.  
  37.     // The total approved budget for the project
  38.     @JsonProperty(value = "total_funding")
  39.     private CurrencyAmount totalFunding;
  40.  
  41.     // The approved pre-budget for the project
  42.     @JsonProperty(value = "local_pre_funding")
  43.     private CurrencyAmount localPreFunding;
  44.  
  45.     // The approved local budget for the project
  46.     @JsonProperty(value = "local_funding")
  47.     private CurrencyAmount localFunding;
  48.  
  49.     // Additional comments regarding the project call submission
  50.     @JsonProperty(value = "comments")
  51.     private String comments;
  52.  
  53.     // Human resources and budget
  54.  
  55.     // The total amount requested for Human Resources
  56.     @JsonProperty(value = "total_hr_value")
  57.     private CurrencyAmount totalHrValue;
  58.  
  59.     // The total person-months allocated to the project
  60.     @JsonProperty(value = "team_person_months")
  61.     private Double teamPersonMonths;
  62.  
  63.     // The number of HR expected for the project
  64.     @JsonProperty(value = "number_of_expected_human_resources")
  65.     private Integer numberOfExpectedHumanResources;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement