Changeset b8dc761 for src/main/java/it/finki/charitable/entities
- Timestamp:
- 01/05/22 15:57:29 (3 years ago)
- Branches:
- master
- Children:
- 6fa3d09
- Parents:
- 881a233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/charitable/entities/DonationPost.java
r881a233 rb8dc761 61 61 private List<FundsCollected> fundsCollected = new ArrayList<>(); 62 62 63 private Float totalFundsCollected = 0f; 64 private LocalDate createdAt; 65 private Integer riskFactor = 101; 66 63 67 @Transient 64 68 public List<String> getImagesPath() { … … 222 226 this.fundsCollected = fundsCollected; 223 227 } 228 229 public Float getTotalFundsCollected() { 230 return totalFundsCollected; 231 } 232 233 public void setTotalFundsCollected(Float totalFundsCollected) { 234 this.totalFundsCollected = totalFundsCollected; 235 } 236 237 public LocalDate getCreatedAt() { 238 return createdAt; 239 } 240 241 public void setCreatedAt(LocalDate createdAt) { 242 this.createdAt = createdAt; 243 } 244 245 public Integer getRiskFactor() { 246 return riskFactor; 247 } 248 249 public void setRiskFactor(Integer riskFactor) { 250 this.riskFactor = riskFactor; 251 } 224 252 }
Note:
See TracChangeset
for help on using the changeset viewer.