MessageBak.java
1005 字节
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
//
// 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_;
}
}