forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFsort.java
More file actions
65 lines (62 loc) · 1.27 KB
/
Fsort.java
File metadata and controls
65 lines (62 loc) · 1.27 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.model;
/**
* <p>Title: mingrisoft</p>
* <p>Description: Ã÷ÈտƼ¼ÃÅ»§ÍøÕ¾</p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: MR</p>
* @author BWM
* @version 1.0
*/
public class Fsort {
private int fsid;
private String name;
private String ftime;
private String uid;
private String resume;
private int state;
private int free;
public Fsort() {
}
public int getFsid() {
return fsid;
}
public void setFsid(int fsid) {
this.fsid = fsid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getFtime() {
return ftime;
}
public void setFtime(String ftime) {
this.ftime = ftime;
}
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getResume() {
return resume;
}
public void setResume(String resume) {
this.resume = resume;
}
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
public int getFree() {
return free;
}
public void setFree(int free) {
this.free = free;
}
}