-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.java
More file actions
110 lines (87 loc) · 2.21 KB
/
Student.java
File metadata and controls
110 lines (87 loc) · 2.21 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
106
107
108
109
110
import java.sql.Date;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author asus
*/
class Student {
long sid;
String s_name;
String s_email;
long s_contact;
String s_b_No;
String s_apt_no;
int Zip_code;
String s_country;
Date s_DOB;
public Student(long sid,String s_name,String s_email,long s_contact,String s_b_No,String s_apt_no,int Zip_code,String s_country,Date s_DOB)
{
this.sid=sid;
this.s_name=s_name;
this.s_email=s_email;
this.s_country=s_country;
this.s_contact=s_contact;
this.s_b_No=s_b_No;
this.s_apt_no=s_apt_no;
this.Zip_code=Zip_code;
this.s_DOB=s_DOB;
}
public long getSid() {
return sid;
}
public void setSid(long sid) {
this.sid = sid;
}
public String getS_name() {
return s_name;
}
public void setS_name(String s_name) {
this.s_name = s_name;
}
public String getS_email() {
return s_email;
}
public void setS_email(String s_email) {
this.s_email = s_email;
}
public long getS_contact() {
return s_contact;
}
public void setS_contact(long s_contact) {
this.s_contact = s_contact;
}
public String getS_b_No() {
return s_b_No;
}
public void setS_b_No(String s_b_No) {
this.s_b_No = s_b_No;
}
public String getS_apt_no() {
return s_apt_no;
}
public void setS_apt_no(String s_apt_no) {
this.s_apt_no = s_apt_no;
}
public int getZip_code() {
return Zip_code;
}
public void setZip_code(int Zip_code) {
this.Zip_code = Zip_code;
}
public String getS_country() {
return s_country;
}
public void setS_country(String s_country) {
this.s_country = s_country;
}
public Date getS_DOB() {
return s_DOB;
}
public void setS_DOB(Date s_DOB) {
this.s_DOB = s_DOB;
}
}