cr 2 өдөр өмнө
parent
commit
b72e7ca343

+ 1 - 1
blade-service/blade-business/src/main/java/org/springblade/business/feignClient/ContractLogClientImpl.java

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