|
@@ -17,6 +17,7 @@ import com.shanghaichengdi.ghjgitem.vo.response.ResultRes;
|
|
|
import com.shanghaichengdi.ghjgitem.vo.response.ReturnMsg;
|
|
|
import java.text.ParseException;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
import javax.annotation.Resource;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
@@ -59,7 +60,9 @@ public class BoatController extends CommonController {
|
|
|
return ReturnMsg.error(HttpStatus.BAD_REQUEST, "key值有误,请确认您输入的key值正确!");
|
|
|
}
|
|
|
String paramJsonData = getParamJsonData(vo.getData());
|
|
|
- JSONArray mmsiList = JSONArray.parseArray(paramJsonData);
|
|
|
+ AISRealTimeVo aisRealTimeVo = JSONObject.parseObject(paramJsonData,
|
|
|
+ AISRealTimeVo.class);
|
|
|
+ List<String> mmsiList = aisRealTimeVo.getMmsi();
|
|
|
if(mmsiList.size()>100){
|
|
|
throw new EnumException("查询条数不得超过100");
|
|
|
}
|