#24 Transaction import: rules for automatic account matching
This commit is contained in:
@@ -21,6 +21,7 @@ public class Account {
|
||||
@OneToMany(fetch = FetchType.EAGER)
|
||||
@JoinColumn(name = "account_id")
|
||||
private Set<AccountStatistic> accountStatistics;
|
||||
private String uploadMatchRegexps;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -73,4 +74,12 @@ public class Account {
|
||||
public void setAccountStatistics(Set<AccountStatistic> accountStatistics) {
|
||||
this.accountStatistics = accountStatistics;
|
||||
}
|
||||
|
||||
public String getUploadMatchRegexps() {
|
||||
return uploadMatchRegexps;
|
||||
}
|
||||
|
||||
public void setUploadMatchRegexps(String uploadMatchRegexps) {
|
||||
this.uploadMatchRegexps = uploadMatchRegexps;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user