imdg оптимизация *AccountMapStore

This commit is contained in:
AKurakin 2023-06-15 14:11:24 +03:00
parent abaf107700
commit 3f35a92afd
4 changed files with 16 additions and 0 deletions

View file

@ -26,6 +26,10 @@ public class BankAccountMapStore extends TemplateMapStore<BankAccount> {
return "BANK_ACCOUNT";
}
public String[] getIndexingField() {
return new String[]{"accountId"};
}
@Override
public String[] getFields() {
return new String[]{

View file

@ -26,6 +26,10 @@ public class ClearingAccountMapStore extends TemplateMapStore<ClearingAccount> {
return "CLEARING_ACCOUNT";
}
public String[] getIndexingField() {
return new String[]{"accountId"};
}
@Override
public String[] getFields() {
return new String[]{

View file

@ -28,6 +28,10 @@ public class DepoAccountMapStore extends TemplateMapStore<DepoAccount> {
return "DEPO_ACCOUNT";
}
public String[] getIndexingField() {
return new String[]{"accountId"};
}
@Override
public String[] getFields() {
return new String[]{

View file

@ -26,6 +26,10 @@ public class InformationAccountMapStore extends TemplateMapStore<InformationAcco
return "INFORMATION_ACCOUNT";
}
public String[] getIndexingField() {
return new String[]{"accountId"};
}
@Override
public String[] getFields() {
return new String[]{