ソースを参照

Merge branch 'develop' of gitadmin/tuoheng_lc into release

tags/v1.2.0^2
wanjing 1年前
コミット
f00722c387
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java

+ 2
- 1
tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java ファイルの表示

@@ -90,7 +90,7 @@ public class IndexServiceImpl implements IndexService {

@Override
public JsonResult getAirportDetail(Integer airportId){
String url = CommonConfig.airportURL +"/api/airportInterface/getAirportStatus";
String url = CommonConfig.airportURL + "/api/airportInterface/getAirportStatus";
String param = "airportId=" + airportId;
String result = HttpUtils.sendGet(url, param);
JsonResult jsonResult = JacksonUtil.json2pojo(result, JsonResult.class);
@@ -114,6 +114,7 @@ public class IndexServiceImpl implements IndexService {
if(hpa != null){
BigDecimal mpa = hpa.divide(new BigDecimal(100000), 1, BigDecimal.ROUND_HALF_UP);
airportDetailDto.setHpa(mpa + "Mpa");
airportDetailDto.setHpa(hpa + "Mpa");
}
}
JSONObject tahJson = dataObject.getJSONObject("TAH");

読み込み中…
キャンセル
保存