This commit is contained in:
Lucio Lelii 2018-05-07 16:05:46 +00:00
parent bd59614019
commit c076518478
2 changed files with 2 additions and 3 deletions

View File

@ -11,12 +11,11 @@ import lombok.Setter;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@AttributeRootNode("nthl:accountingEntryCreate")
public class AccountEntryCreate extends AccountEntry{
@Attribute("hl:itemName")
String itemName;
AccountingEntryType type = AccountingEntryType.CREATE;
final AccountingEntryType type = AccountingEntryType.CREATE;
}

View File

@ -18,5 +18,5 @@ public class AccountEntryRead extends AccountEntry{
@Attribute("hl:itemName")
String itemName;
AccountingEntryType type = AccountingEntryType.READ;
final AccountingEntryType type = AccountingEntryType.READ;
}