#24 Transaction import: rules for automatic account matching

This commit is contained in:
2021-09-02 02:30:24 +02:00
parent 70218ad7dc
commit d88e2583b5
22 changed files with 184 additions and 52 deletions

View File

@@ -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;
}
}