mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#ifndef TRAINEE_H
|
|
#define TRAINEE_H
|
|
|
|
#include <QString>
|
|
#include "DataBaseLMS_global.h"
|
|
|
|
class DATABASELMS_EXPORT Trainee
|
|
{
|
|
public:
|
|
Trainee();
|
|
|
|
void setID(int trainee_id){this->trainee_id = trainee_id;}
|
|
int getID(){return trainee_id;}
|
|
|
|
void setName(QString name){this->name = name;}
|
|
QString getName(){return name;}
|
|
|
|
void setLogin(QString login){this->login = login;}
|
|
QString getLogin(){return login;}
|
|
|
|
void setPassword(QString password){this->password = password;}
|
|
QString getPassword(){return password;}
|
|
|
|
void setLearnClass(QString learnClass){this->learnClass = learnClass;}
|
|
QString getLearnClass(){return learnClass;}
|
|
|
|
void setComputer(QString computer){this->computer = computer;}
|
|
QString getComputer(){return computer;}
|
|
|
|
void setGroup(QString group){this->group = group;}
|
|
QString getGroup(){return group;}
|
|
|
|
void setArchived(bool archived){this->archived = archived;}
|
|
bool getArchived(){return archived;}
|
|
|
|
void setLoggedIn(bool loggedIn){this->loggedIn = loggedIn;}
|
|
bool getLoggedIn(){return loggedIn;}
|
|
|
|
void setWhatItDoes(QString whatItDoes){this->whatItDoes = whatItDoes;}
|
|
QString getWhatItDoes(){return whatItDoes;}
|
|
|
|
private:
|
|
int trainee_id;
|
|
QString name;
|
|
QString login;
|
|
QString password;
|
|
QString learnClass;
|
|
QString computer;
|
|
QString group;
|
|
bool archived;
|
|
|
|
QString whatItDoes;
|
|
|
|
bool loggedIn;
|
|
};
|
|
|
|
#endif // TRAINEE_H
|