修改psdt增加原值机位信息记录。 修改dnld发送消息到msg

This commit is contained in:
zhouxiunai
2019-01-09 19:55:18 +08:00
parent 4b27731803
commit c694c62a00
8 changed files with 117 additions and 5 deletions
@@ -421,6 +421,10 @@ public class SCHD
@JsonProperty("PSDT")
protected List<STANDDATA> psdt;//航班计划机位数据 plan stand data
@XmlElement(name = "LPSDT")
@JsonProperty("LPSDT")
protected String lpsdt;//上次航班机位数据,机位逗号分隔
@XmlElement(name = "CKDT")
@JsonProperty("CKDT")
protected List<DESKDATA> ckdt;// check in counter data 值机位数据
@@ -2034,6 +2038,14 @@ public class SCHD
this.naat = value;
}
public String getLpsdt() {
return lpsdt;
}
public void setLpsdt(String lpsdt) {
this.lpsdt = lpsdt;
}
}
}