Last active
August 23, 2018 03:43
-
-
Save jaocamp/737e21cf5762b8f1e761a4d041ae4168 to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - BankAccountDTO.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package br.com.coderef.dto; | |
import lombok.AllArgsConstructor; | |
import lombok.Getter; | |
import lombok.NoArgsConstructor; | |
import lombok.Setter; | |
import lombok.ToString; | |
import java.math.BigDecimal; | |
@Setter | |
@Getter | |
@ToString | |
@NoArgsConstructor | |
@AllArgsConstructor | |
public class BankAccountDTO { | |
private String name; | |
private BigDecimal balance; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment