diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CHDT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CHDT.java new file mode 100644 index 00000000..66d26487 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CHDT.java @@ -0,0 +1,58 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class CHDT +{ + private String chno; + + private String chut; + + private String ccls; + + private String pcbt; + + private String pcet; + + private String ctyp; + + public String getChno(){ + return this.chno; + } + public void setChno(String chno){ + this.chno = chno; + } + + public String getChut(){ + return this.chut; + } + public void setChut(String chut){ + this.chut = chut; + } + + public String getCcls(){ + return this.ccls; + } + public void setCcls(String ccls){ + this.ccls = ccls; + } + + public String getPcbt(){ + return this.pcbt; + } + public void setPcbt(String pcbt){ + this.pcbt = pcbt; + } + + public String getPcet(){ + return this.pcet; + } + public void setPcet(String pcet){ + this.pcet = pcet; + } + + public String getCtyp(){ + return this.ctyp; + } + public void setCtyp(String ctyp){ + this.ctyp = ctyp; + } +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CKDT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CKDT.java new file mode 100644 index 00000000..bd388b62 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/CKDT.java @@ -0,0 +1,68 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class CKDT +{ + private String ckno; + + private String chkc; + + private String ccls; + + private String pcot; + + private String pcct; + + private String cctm; + + private String ctyp; + + public String getCkno(){ + return this.ckno; + } + public void setCkno(String ckno){ + this.ckno = ckno; + } + + public String getChkc(){ + return this.chkc; + } + public void setChkc(String chkc){ + this.chkc = chkc; + } + + public String getCcls(){ + return this.ccls; + } + public void setCcls(String ccls){ + this.ccls = ccls; + } + + public String getPcot(){ + return this.pcot; + } + public void setPcot(String pcot){ + this.pcot = pcot; + } + + public String getPcct(){ + return this.pcct; + } + public void setPcct(String pcct){ + this.pcct = pcct; + } + + public String getCctm(){ + return this.cctm; + } + public void setCctm(String cctm){ + this.cctm = cctm; + } + + public String getCtyp(){ + return this.ctyp; + } + public void setCtyp(String ctyp){ + this.ctyp = ctyp; + } +} + diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsg.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsg.java new file mode 100644 index 00000000..f057ff32 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsg.java @@ -0,0 +1,9 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +import com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.Msg; + +public class DnldMsg extends Msg { + + private DnldMsgBody schd; + +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsgBody.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsgBody.java new file mode 100644 index 00000000..29292bab --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/DnldMsgBody.java @@ -0,0 +1,21 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +import java.util.List; + +public class DnldMsgBody { + private String Recs;//记录数 + private List fltr;//航班动态消息记录列表 + + public String getRecs() { + return Recs; + } + public void setRecs(String recs) { + Recs = recs; + } + public List getFltr() { + return fltr; + } + public void setFltr(List fltr) { + this.fltr = fltr; + } +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ERUT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ERUT.java new file mode 100644 index 00000000..96494b60 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ERUT.java @@ -0,0 +1,31 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class ERUT +{ + private String rtno; + + private String apcd; + + private String scdt; + + public String getRtno(){ + return this.rtno; + } + public void setRtno(String rtno){ + this.rtno = rtno; + } + + public String getApcd(){ + return this.apcd; + } + public void setApcd(String apcd){ + this.apcd = apcd; + } + + public String getScdt(){ + return this.scdt; + } + public void setScdt(String scdt){ + this.scdt = scdt; + } +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/FLTR.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/FLTR.java new file mode 100644 index 00000000..ec951e0d --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/FLTR.java @@ -0,0 +1,285 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +import java.util.List; + +public class FLTR +{ + private String flid; + + private String alcd; + + private String flno; + + private String mvin; + + private String sodt; + + private String flty; + + private String flin; + + private List rout; + + private String acft; + + private String reno; + + private String taop; + + private String tafl; + + private String taid; + + private String trml; + + private String estt; + + private String actt; + + private CHDT chdt; + + private List gtdt; + + private String stnd; + + private PSDT psdt; + + private List ckdt; + + private String phag; + + private String botm; + + private String lacl; + + private String fhag; + + private String mhag; + + private List erut; + + private String exsc; + + private String ftss; + + private String neat; + + private String naat; + + public String getFlid(){ + return this.flid; + } + public void setFlid(String flid){ + this.flid = flid; + } + + public String getAlcd(){ + return this.alcd; + } + public void setAlcd(String alcd){ + this.alcd = alcd; + } + + public String getFlno(){ + return this.flno; + } + public void setFlno(String flno){ + this.flno = flno; + } + + public String getMvin(){ + return this.mvin; + } + public void setMvin(String mvin){ + this.mvin = mvin; + } + + public String getSodt(){ + return this.sodt; + } + public void setSodt(String sodt){ + this.sodt = sodt; + } + + public String getFlty(){ + return this.flty; + } + public void setFlty(String flty){ + this.flty = flty; + } + + public String getFlin(){ + return this.flin; + } + public void setFlin(String flin){ + this.flin = flin; + } + + public List getRout(){ + return this.rout; + } + public void setRout(List rout){ + this.rout = rout; + } + + public String getAcft(){ + return this.acft; + } + public void setAcft(String acft){ + this.acft = acft; + } + + public String getReno(){ + return this.reno; + } + public void setReno(String reno){ + this.reno = reno; + } + + public String getTaop(){ + return this.taop; + } + public void setTaop(String taop){ + this.taop = taop; + } + + public String getTafl(){ + return this.tafl; + } + public void setTafl(String tafl){ + this.tafl = tafl; + } + + public String getTaid(){ + return this.taid; + } + public void setTaid(String taid){ + this.taid = taid; + } + + public String getTrml(){ + return this.trml; + } + public void setTrml(String trml){ + this.trml = trml; + } + + public String getEstt(){ + return this.estt; + } + public void setEstt(String estt){ + this.estt = estt; + } + + public String getActt(){ + return this.actt; + } + public void setActt(String actt){ + this.actt = actt; + } + + public CHDT getChdt(){ + return this.chdt; + } + public void setChdt(CHDT chdt){ + this.chdt = chdt; + } + + public List getGtdt(){ + return this.gtdt; + } + public void setGtdt(List gtdt){ + this.gtdt = gtdt; + } + + public String getStnd(){ + return this.stnd; + } + public void setStnd(String stnd){ + this.stnd = stnd; + } + + public PSDT getPsdt(){ + return this.psdt; + } + public void setPsdt(PSDT psdt){ + this.psdt = psdt; + } + + public List getCkdt(){ + return this.ckdt; + } + public void setCkdt(List ckdt){ + this.ckdt = ckdt; + } + + public String getPhag(){ + return this.phag; + } + public void setPhag(String phag){ + this.phag = phag; + } + + public String getBotm(){ + return this.botm; + } + public void setBotm(String botm){ + this.botm = botm; + } + + public String getLacl(){ + return this.lacl; + } + public void setLacl(String lacl){ + this.lacl = lacl; + } + + public String getFhag(){ + return this.fhag; + } + public void setFhag(String fhag){ + this.fhag = fhag; + } + + public String getMhag(){ + return this.mhag; + } + public void setMhag(String mhag){ + this.mhag = mhag; + } + + public List getErut(){ + return this.erut; + } + public void setErut(List erut){ + this.erut = erut; + } + + public String getExsc(){ + return this.exsc; + } + public void setExsc(String exsc){ + this.exsc = exsc; + } + + public String getFtss(){ + return this.ftss; + } + public void setFtss(String ftss){ + this.ftss = ftss; + } + + public String getNeat(){ + return this.neat; + } + public void setNeat(String neat){ + this.neat = neat; + } + + public String getNaat(){ + return this.naat; + } + public void setNaat(String naat){ + this.naat = naat; + } +} \ No newline at end of file diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/GTDT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/GTDT.java new file mode 100644 index 00000000..2169b997 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/GTDT.java @@ -0,0 +1,58 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class GTDT +{ + private String gtno; + + private String gate; + + private String pgot; + + private String pgct; + + private String gctm; + + private String gtyp; + + public String getGtno(){ + return this.gtno; + } + public void setGtno(String gtno){ + this.gtno = gtno; + } + + public String getGate(){ + return this.gate; + } + public void setGate(String gate){ + this.gate = gate; + } + + public String getPgot(){ + return this.pgot; + } + public void setPgot(String pgot){ + this.pgot = pgot; + } + + public String getPgct(){ + return this.pgct; + } + public void setPgct(String pgct){ + this.pgct = pgct; + } + + public String getGctm(){ + return this.gctm; + } + public void setGctm(String gctm){ + this.gctm = gctm; + } + + public String getGtyp(){ + return this.gtyp; + } + public void setGtyp(String gtyp){ + this.gtyp = gtyp; + } +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/PSDT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/PSDT.java new file mode 100644 index 00000000..0bbc4703 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/PSDT.java @@ -0,0 +1,40 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class PSDT +{ + private String psno; + + private String psst; + + private String stst; + + private String stet; + + public String getPsno(){ + return this.psno; + } + public void setPsno(String psno){ + this.psno = psno; + } + + public String getPsst(){ + return this.psst; + } + public void setPsst(String psst){ + this.psst = psst; + } + + public String getStst(){ + return this.stst; + } + public void setStst(String stst){ + this.stst = stst; + } + + public String getStet(){ + return this.stet; + } + public void setStet(String stet){ + this.stet = stet; + } +} diff --git a/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ROUT.java b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ROUT.java new file mode 100644 index 00000000..80ca89a3 --- /dev/null +++ b/src/main/java/com/gzzn/omms/msgexchangeapi/domain/primary/entity/msg/schd/dnld/ROUT.java @@ -0,0 +1,40 @@ +package com.gzzn.omms.msgexchangeapi.domain.primary.entity.msg.schd.dnld; + +public class ROUT +{ + private String rtno; + + private String apcd; + + private String scat; + + private String scdt; + + public String getRtno(){ + return this.rtno; + } + public void setRtno(String rtno){ + this.rtno = rtno; + } + + public String getApcd(){ + return this.apcd; + } + public void setApcd(String apcd){ + this.apcd = apcd; + } + + public String getScat(){ + return this.scat; + } + public void setScat(String scat){ + this.scat = scat; + } + + public String getScdt(){ + return this.scdt; + } + public void setScdt(String scdt){ + this.scdt = scdt; + } +} \ No newline at end of file