审查视图

src/java/com/airport/bean/XMLHeader.java 1003 字节
朱兆平 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
//
// 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;
    }
}