重构优化登机桥消息处理

This commit is contained in:
zhouxiunai
2019-01-25 17:52:58 +08:00
parent 5d96d4f2b6
commit 1fcfd7fab7
2 changed files with 114 additions and 25 deletions
@@ -561,6 +561,13 @@ public class SCHD
@JsonProperty("ABTM")
protected List<BRIDGEDATA> abtm;//Air bridge time 登机桥时间数据
@ApiModelProperty(value="登机桥数据,逗号分隔")
@XmlElement(name = "ABDG")
@JsonProperty("ABDG")
protected String abdg;//登机桥数据,逗号分隔
@ApiModelProperty(value="flights landing has been aborted.航班着陆中止原因的描述")
@XmlElement(name = "FLAB")
@JsonProperty("FLAB")
@@ -2151,6 +2158,14 @@ public class SCHD
public void setMafl(List<MAFLDATA> mafl) {
this.mafl = mafl;
}
public String getAbdg() {
return abdg;
}
public void setAbdg(String abdg) {
this.abdg = abdg;
}
}
}