imdg добавил индекс на Account

This commit is contained in:
AKurakin 2023-09-14 17:00:13 +03:00
parent 38333d5b95
commit 425d5c4e13

View file

@ -34,6 +34,11 @@ public class AccountMapStore extends TemplateMapStore<Account> {
};
}
@Override
public String[] getIndexingField() {
return new String[]{"account", "companyId"};
}
@Override
public Account objectReader(ResultSet resultSet) throws SQLException {
Account object = new Account();