forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLink.java
More file actions
44 lines (41 loc) · 808 Bytes
/
Link.java
File metadata and controls
44 lines (41 loc) · 808 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 Link {
private int lid;
private String name;
private String ltime;
private String url;
public Link() {
}
public int getLid() {
return lid;
}
public void setLid(int lid) {
this.lid = lid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLtime() {
return ltime;
}
public void setLtime(String ltime) {
this.ltime = ltime;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}