|
21 | 21 |
|
22 | 22 | import java.io.Serializable; |
23 | 23 | import java.math.BigDecimal; |
| 24 | +import java.util.Date; |
24 | 25 |
|
25 | 26 | @JsonInclude(JsonInclude.Include.NON_NULL) |
26 | 27 | public class AccountPaymentDTO implements Serializable { |
27 | 28 |
|
28 | 29 | private Long id; |
29 | 30 | private Long accountId; |
30 | 31 | private String account; |
| 32 | + |
| 33 | + private Date creationDate; |
| 34 | + private Date creationTime; |
| 35 | + |
| 36 | + private Date creationTimestamp; |
| 37 | + private String creator; |
31 | 38 | private String type; |
32 | 39 | private BigDecimal value; |
33 | 40 | private BigDecimal paymentValue; |
@@ -317,4 +324,36 @@ public Long getResellerId() { |
317 | 324 | public void setResellerId(Long resellerId) { |
318 | 325 | this.resellerId = resellerId; |
319 | 326 | } |
| 327 | + |
| 328 | + public Date getCreationDate() { |
| 329 | + return creationDate; |
| 330 | + } |
| 331 | + |
| 332 | + public void setCreationDate(Date creationDate) { |
| 333 | + this.creationDate = creationDate; |
| 334 | + } |
| 335 | + |
| 336 | + public Date getCreationTime() { |
| 337 | + return creationTime; |
| 338 | + } |
| 339 | + |
| 340 | + public void setCreationTime(Date creationTime) { |
| 341 | + this.creationTime = creationTime; |
| 342 | + } |
| 343 | + |
| 344 | + public Date getCreationTimestamp() { |
| 345 | + return creationTimestamp; |
| 346 | + } |
| 347 | + |
| 348 | + public void setCreationTimestamp(Date creationTimestamp) { |
| 349 | + this.creationTimestamp = creationTimestamp; |
| 350 | + } |
| 351 | + |
| 352 | + public String getCreator() { |
| 353 | + return creator; |
| 354 | + } |
| 355 | + |
| 356 | + public void setCreator(String creator) { |
| 357 | + this.creator = creator; |
| 358 | + } |
320 | 359 | } |
0 commit comments