Entities improvement

This commit is contained in:
Andrew nuark G 2020-12-15 21:44:41 +07:00
parent 19f223b474
commit 76ac624519
11 changed files with 39 additions and 27 deletions

View file

@ -4,7 +4,7 @@ user_entity::user_entity(const QString &login, const QString &password, UserRole
this->_pwd_hash = QCryptographicHash::hash(password.toLocal8Bit(), QCryptographicHash::Sha3_256);
}
unsigned long long user_entity::id() {
entity_id user_entity::id() {
return this->_id;
}