|
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
import com.shanghaichengdi.ghjgitem.enums.SupervisionAreaCode;
|
|
|
+import com.shanghaichengdi.ghjgitem.exception.EnumException;
|
|
|
import com.shanghaichengdi.ghjgitem.mapper.CommonMapper;
|
|
|
import com.shanghaichengdi.ghjgitem.service.CommonService;
|
|
|
import com.shanghaichengdi.ghjgitem.util.PrintLogUtils;
|
|
@@ -99,6 +100,36 @@ public class CommonServiceImpl implements CommonService {
|
|
|
|
|
|
@Override
|
|
|
public List<ShipDataVo> selectBoatInfoList(ShipDataRequest param) {
|
|
|
+ // 批量查询判断
|
|
|
+ String mmsi = param.getMmsi();
|
|
|
+ if (mmsi.split(",").length > 1){
|
|
|
+ if(mmsi.split(",").length > 100){
|
|
|
+ throw new EnumException("mmsi批量查询不得超过100条");
|
|
|
+ }
|
|
|
+ List<ShipDataVo> list = new ArrayList<>();
|
|
|
+ List<String> mmsiList = Arrays.asList(mmsi.split(","));
|
|
|
+ for(int i=0; i<mmsiList.size();i++){
|
|
|
+ mmsiList.set(i, "'" + mmsiList.get(i) + "'");
|
|
|
+ System.out.println(mmsiList.get(i));
|
|
|
+ }
|
|
|
+ param.setMmsiList(mmsiList);
|
|
|
+ param.setMmsi("");
|
|
|
+ }
|
|
|
+
|
|
|
+ String shipNameCn = param.getShipNameCn();
|
|
|
+ if (shipNameCn.split(",").length > 1){
|
|
|
+ if(shipNameCn.split(",").length > 100){
|
|
|
+ throw new EnumException("shipNameCn批量查询不得超过100条");
|
|
|
+ }
|
|
|
+ List<ShipDataVo> list = new ArrayList<>();
|
|
|
+ List<String> shipNameCnList = Arrays.asList(shipNameCn.split(","));
|
|
|
+ for(int i=0; i<shipNameCnList.size();i++){
|
|
|
+ shipNameCnList.set(i, "'" + shipNameCnList.get(i) + "'");
|
|
|
+ System.out.println(shipNameCnList.get(i));
|
|
|
+ }
|
|
|
+ param.setShipNameCnList(shipNameCnList);
|
|
|
+ param.setShipNameCn("");
|
|
|
+ }
|
|
|
PageHelper.startPage(param.getPageIndex(), param.getPageSize());
|
|
|
return mapper.selectBoatInfoList(param);
|
|
|
}
|