-
Notifications
You must be signed in to change notification settings - Fork 1
/
person.cpp
55 lines (49 loc) · 1.01 KB
/
person.cpp
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
#include"person.h"
Person::Person(){
}
Person::Person(QString name){
this->name=name;
}
Person::Person(QString name,QString id,QString sex,QString password){
this->name=name;
this->PersonId=id;
this->sex=sex;
this->password=password;
}
Person::Person(QString name,QString id,QString sex,QString password,int role){
this->name=name;
this->PersonId=id;
this->sex=sex;
this->password=password;
this->role=role;
}
QString Person::getPassword(){
return this->password;
}
void Person::setPassword(QString password){
this->password=password;
}
QString Person::getName(){
return this->name;
}
QString Person::getPersonId(){
return this->PersonId;
}
QString Person::getSex(){
return this->sex;
}
void Person::setName(QString name){
this->name=name;
}
void Person::setPersonId(QString id){
this->PersonId=id;
}
void Person::setSex(QString sex){
this->sex=sex;
}
void Person::setRole(int role){
this->role=role;
}
int Person::getRole(){
return this->role;
}