|
|
@@ -211,7 +211,7 @@ public class ContractLogClientImpl implements ContractLogClient {
|
|
|
|
|
|
@Override
|
|
|
public List<ContractLog> queryContractLogByIds1(String theLogIds) {
|
|
|
- Func.toLongList(theLogIds)
|
|
|
+ List<Long> ids = Func.toLongList(theLogIds);
|
|
|
return this.contractLogService.list(Wrappers.<ContractLog>lambdaQuery().in(ContractLog::getId, ids));
|
|
|
}
|
|
|
|