Last active
August 23, 2018 03:47
-
-
Save jaocamp/85e19e8dfa8f0c3e4fb65d28e1b62c0f to your computer and use it in GitHub Desktop.
CQRS e Event Sourcing com Axon Framework e Spring Boot - AddBankAccountCommand.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.command; | |
import lombok.AllArgsConstructor; | |
import lombok.Getter; | |
import lombok.ToString; | |
import org.axonframework.commandhandling.TargetAggregateIdentifier; | |
import java.math.BigDecimal; | |
@Getter | |
@ToString | |
@AllArgsConstructor | |
public class AddBankAccountCommand { | |
@TargetAggregateIdentifier | |
private String id; | |
private String name; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment