XMLHeader.java 1003 字节
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package com.airport.bean;

public class XMLHeader {
    private String sndr;
    private String rcvr;
    private String type;
    private String stype;

    public XMLHeader() {
    }

    public String toString() {
        return "sndr=[" + this.sndr + "]\t rcvr=[" + this.rcvr + "]\t type=[" + this.type + "]\t stype=[" + this.stype + "]";
    }

    public String getSndr() {
        return this.sndr;
    }

    public void setSndr(String sndr) {
        this.sndr = sndr;
    }

    public String getRcvr() {
        return this.rcvr;
    }

    public void setRcvr(String rcvr) {
        this.rcvr = rcvr;
    }

    public String getType() {
        return this.type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getStype() {
        return this.stype;
    }

    public void setStype(String stype) {
        this.stype = stype;
    }
}