审查视图

src/java/com/airport/bean/MessageBak.java 1005 字节
朱兆平 authored
1 2 3 4 5 6 7 8 9 10
//
// 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;
11
    private int rownum_;
朱兆平 authored
12 13 14 15 16 17

    public MessageBak(int fid, String content) {
        this.fid = fid;
        this.content = content;
    }
18 19 20 21 22 23
    public MessageBak(int fid, String content,int rownum_) {
        this.fid = fid;
        this.content = content;
        this.rownum_ = rownum_;
    }
朱兆平 authored
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    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;
    }
43 44 45 46 47 48 49 50

    public int getRownum_() {
        return rownum_;
    }

    public void setRownum_(int rownum_) {
        this.rownum_ = rownum_;
    }
朱兆平 authored
51
}