|
@@ -63,6 +63,11 @@ public class TransactionService {
|
|
|
if (null != transactionPram.getServiceType()) {
|
|
|
boolQuery.must(QueryBuilders.termQuery("serviceType", transactionPram.getServiceType()));
|
|
|
}
|
|
|
+
|
|
|
+ //流水类型
|
|
|
+ if (null != transactionPram.getDistinguish()) {
|
|
|
+ boolQuery.must(QueryBuilders.termQuery("distinguish", transactionPram.getDistinguish()));
|
|
|
+ }
|
|
|
//客户名称
|
|
|
if (Strings.isNotBlank(transactionPram.getName())) {
|
|
|
boolQuery.must(QueryBuilders.wildcardQuery("customerName.keyword", "*" + transactionPram.getName() + "*"));
|