forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHead.java
More file actions
44 lines (41 loc) · 822 Bytes
/
Head.java
File metadata and controls
44 lines (41 loc) · 822 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
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 Head {
private String iid;
private String path;
private String atime;
private int state;
public Head() {
}
public String getIid() {
return iid;
}
public void setIid(String iid) {
this.iid = iid;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getAtime() {
return atime;
}
public void setAtime(String atime) {
this.atime = atime;
}
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
}