-
Notifications
You must be signed in to change notification settings - Fork 0
/
Examinee.py
65 lines (47 loc) · 1.63 KB
/
Examinee.py
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
# -*- coding: utf-8 -*-
"""
Created on Tue Feb 07 16:33:44 2012
@author: Administrator
"""
class Examinee:
stu_name = "" #姓名
stu_indentify = "" #身份证
stu_school = "" #学校
exam_major = "" #报考科目
exam_id = "" #准考证号
exam_room = "" #考场编号
exam_seat = "" #座位
exam_place ="" #考试地点
def setStu_name(self,stu_name):
self.stu_name = stu_name
def setExam_seat(self,exam_seat):
self.exam_seat = exam_seat
def setStu_indentify(self,stu_indentify):
self.stu_indentify= stu_indentify
def setStu_school(self,stu_school):
self.stu_school = stu_school
def setExam_major(self,exam_major):
self.exam_major =exam_major
def setExam_id(self,exam_id):
self.exam_id = exam_id
def setExam_room(self,exam_room):
self.exam_room = exam_room
def setExam_place(self,exam_place):
self.exam_place = exam_place
#get()
def getStu_name(self):
return self.stu_name
def getExam_seat(self):
return self.exam_seat
def getStu_indentify(self):
return self.stu_indentify
def getStu_school(self):
return self.stu_school
def getExam_major(self):
return self.exam_major
def getExam_id(self):
return self.exam_id
def getExam_room(self):
return self.exam_room
def getExam_place(self):
return self.exam_place