新增保存原飞机号信息。LRENO

This commit is contained in:
zhouxiunai
2019-01-09 20:23:47 +08:00
parent c694c62a00
commit 5abf7f3228
2 changed files with 17 additions and 0 deletions
@@ -365,6 +365,11 @@ public class SCHD
@JsonProperty("RENO")
protected String reno;//Registration or tail number of flight 航班注册号或尾号
@XmlElement(name = "LRENO")
@JsonProperty("LRENO")
protected String lreno;//Registration or tail number of flight 航班注册号或尾号,上一次的值
@XmlElement(name = "TAOP")
@JsonProperty("TAOP")
protected String taop;//Turnaround operator 承运人
@@ -2046,6 +2051,14 @@ public class SCHD
this.lpsdt = lpsdt;
}
public String getLreno() {
return lreno;
}
public void setLreno(String lreno) {
this.lreno = lreno;
}
}
}