forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.java
More file actions
78 lines (76 loc) · 1.57 KB
/
news.java
File metadata and controls
78 lines (76 loc) · 1.57 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
package electric.dbs;
import java.sql.*;
import javax.servlet.http.*;
import electric.*;
import java.text.SimpleDateFormat;
import electric.electricUtils.*;
public class news
{
private int Id;
private String Motif;
private String Kithepeople;
private String Content;
private String CreateDate;
private int Createpeople;
private int Status;
public news()
{}
/////////////////////////////////////////////////////////////////
public int getId() {
return this.Id;
}
public String getMotif()
{
return this.Motif;
}
public String getKithepeople()
{
return this.Kithepeople;
}
public String getContent()
{
return this.Content;
}
public String getCreateDate()
{
return this.CreateDate;
}
public int getCreatepeople()
{
return this.Createpeople;
}
public int getStatus()
{
return this.Status;
}
//////////////////////WRITE METHODS/////////////////////////////
/////////////////////////////////////////////////////////////////
public void setId(int Id) {
this.Id=Id;
}
public void setMotif(String Motif)
{
this.Motif=Motif;
}
public void setKithepeople(String Kithepeople)
{
this.Kithepeople=Kithepeople;
}
public void setContent(String Content)
{
this.Content=Content;
}
public void setCreateDate(String CreateDate)
{
this.CreateDate=CreateDate;
}
public void setCreatepeople(int Createpeople)
{
this.Createpeople=Createpeople;
}
public void setStatus(int Status)
{
this.Status=Status;
}
////////////////////////////////////////////////////////////////////////////////
}