-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathData.java
More file actions
49 lines (36 loc) · 724 Bytes
/
Copy pathData.java
File metadata and controls
49 lines (36 loc) · 724 Bytes
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
package rayfantasy.icode.Bmob;
import cn.bmob.v3.*;
public class Data extends BmobObject
{
private String Title;
private String Message;
private Number index;
private String userName;
public Data() {
this.setTableName("Data");
}
public String getTitle() {
return Title;
}
public String getMessage(){
return Message;
}
public Number getindex(){
return index;
}
public void setMessage(String Message){
this.Message=Message;
}
public void setTitle(String Title){
this.Title=Title;
}
public void setindex(Number index){
this.index=index;
}
public void setUser(String User){
this.userName=User;
}
public String getUser(){
return userName;
}
}