forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.java
More file actions
105 lines (99 loc) · 2.18 KB
/
shop.java
File metadata and controls
105 lines (99 loc) · 2.18 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package electric.dbs;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/
import java.sql.*;
import javax.servlet.http.*;
import electric.*;
import java.text.SimpleDateFormat;
import electric.electricUtils.*;
public class shop
{
private int Id;
private String Username;
private String Password;
private String Shopname;
private String Area;
private String Peopleman;
private String Mantel;
private String Shoptel;
private int Usertype;
private String Createdate;
private int Status;
public shop()
{}
public int getId() {
return this.Id;
}
public String getUsername(){
return this.Username;
}
public String getPassword(){
return this.Password;
}
public String getShopname(){
return this.Shopname;
}
public String getArea(){
return this.Area;
}
public String getPeopleman(){
return this.Peopleman;
}
public String getMantel(){
return this.Mantel;
}
public String getShoptel(){
return this.Shoptel;
}
public int getUsertype(){
return this.Usertype;
}
public String getCreatedate(){
return this.Createdate;
}
public int getStatus(){
return this.Status;
}
//////////////////////WRITE METHODS/////////////////////////////
/////////////////////////////////////////////////////////////////
public void setId(int Id) {
this.Id=Id;
}
public void setUsername(String Username){
this.Username=Username;
}
public void setPassword(String Password){
this.Password=Password;
}
public void setShopname(String Shopname){
this.Shopname=Shopname;
}
public void setArea(String Area){
this.Area=Area;
}
public void setPeopleman(String Peopleman){
this.Peopleman=Peopleman;
}
public void setMantel(String Mantel){
this.Mantel=Mantel;
}
public void setShoptel(String Shoptel){
this.Shoptel=Shoptel;
}
public void setUsertypee(int Usertype){
this.Usertype=Usertype;
}
public void setCreatedate(String Createdate){
this.Createdate=Createdate;
}
public void setStatus(int Status){
this.Status=Status;
}
////////////////////////////////////////////////////////////////////////////////
}