24 lines
420 B
Java
24 lines
420 B
Java
package com.baeldung.dto;
|
|
|
|
public class TransactionDTO {
|
|
|
|
private String uuid;
|
|
private Long totalInCents;
|
|
|
|
public String getUuid() {
|
|
return uuid;
|
|
}
|
|
|
|
public void setUuid(String uuid) {
|
|
this.uuid = uuid;
|
|
}
|
|
|
|
public Long getTotalInCents() {
|
|
return totalInCents;
|
|
}
|
|
|
|
public void setTotalInCents(Long totalInCents) {
|
|
this.totalInCents = totalInCents;
|
|
}
|
|
}
|