MessageBak.java 1005 字节
//
// 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;
    private int rownum_;

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

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

    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;
    }

    public int getRownum_() {
        return rownum_;
    }

    public void setRownum_(int rownum_) {
        this.rownum_ = rownum_;
    }
}