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

package com.airport.bean;

public class MessageBak {
    private int fid;
    private String content;

    public MessageBak(int fid, String content) {
        this.fid = fid;
        this.content = content;
    }

    public String toString() {
        return this.fid + " " + this.content;
    }

    public int getFid() {
        return this.fid;
    }

    public void setFid(int fid) {
        this.fid = fid;
    }

    public String getContent() {
        return this.content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}