21 lines
515 B
C++
21 lines
515 B
C++
//
|
|
// Created by dongl on 23-5-6.
|
|
//
|
|
|
|
#include "po.h"
|
|
|
|
|
|
PoUser::PoUser() {
|
|
|
|
}
|
|
|
|
PoUser::PoUser(uint64_t account,
|
|
uint64_t phone, const std::string& email,
|
|
const std::string& username, const std::string& password,
|
|
const std::string& password_salt,const std::string& client_info) :
|
|
account(account),
|
|
phone(phone), email(email),
|
|
username(username), password(password), password_salt(password_salt), client_info(client_info) {
|
|
|
|
}
|