forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMend.java
More file actions
86 lines (83 loc) · 1.74 KB
/
Mend.java
File metadata and controls
86 lines (83 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.model;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: MR</p>
* @author BWM
* @version 1.0
*/
public class Mend {
private int sid;
private String name;
private int state;
private String uptime;
private int commend;
private int loadnum;
private int filesize;
private String resume;
private String path;
private int mid;
public Mend() {
}
public int getMid() {
return mid;
}
public void setMid(int mid) {
this.mid = mid;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
public String getUptime() {
return uptime;
}
public void setUptime(String uptime) {
this.uptime = uptime;
}
public int getCommend() {
return commend;
}
public void setCommend(int commend) {
this.commend = commend;
}
public int getLoadnum() {
return loadnum;
}
public void setLoadnum(int loadnum) {
this.loadnum = loadnum;
}
public int getFilesize() {
return filesize;
}
public void setFilesize(int filesize) {
this.filesize = filesize;
}
public String getResume() {
return resume;
}
public void setResume(String resume) {
this.resume = resume;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}