redis中的key 都是string类型的此处进行调整

This commit is contained in:
fanghongchao
2018-12-20 15:33:37 +08:00
parent 2cf3a6ce23
commit 4a8c145677
3 changed files with 5 additions and 8 deletions
@@ -1,6 +1,5 @@
package com.gzzn.omms.msgexchangeapi.service.flightInfo;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
@@ -88,7 +87,7 @@ public class FlightInfoServiceImpl implements IFlightInfoService {
}
@Override
public boolean batchDeleteFltr(List<BigInteger> flids) {
public boolean batchDeleteFltr(List<String> flids) {
if(null!=flids){
flids.removeAll(Collections.singleton(null));
}
@@ -1,6 +1,5 @@
package com.gzzn.omms.msgexchangeapi.service.flightInfo;
import java.math.BigInteger;
import java.util.List;
import com.gzzn.omms.msgexchangeapi.entity.Cminmsg;
@@ -45,5 +44,5 @@ public interface IFlightInfoService {
* @param flids
* @return
*/
public boolean batchDeleteFltr(List<BigInteger> flids);
public boolean batchDeleteFltr(List<String> flids);
}