Saving changes. Updated oatpp version has some breaking changes

This commit is contained in:
kdeng00
2020-12-18 03:18:23 -05:00
parent ff78baf3b9
commit ae58b60339
5 changed files with 83 additions and 63 deletions
+26 -24
View File
@@ -1,43 +1,45 @@
#ifndef LOGINRESULTDTO_H_
#define LOGINRESULTDTO_H_
#include "oatpp/core/data/mapping/type/Object.hpp"
#include "oatpp/core/macro/codegen.hpp"
// #include <oatpp/core/data/mapping/type/Object.hpp>
#include <oatpp/core/Types.hpp>
#include <oatpp/core/macro/codegen.hpp>
#include "model/Models.h"
namespace dto {
#include OATPP_CODEGEN_BEGIN(DTO)
class LoginResultDto : public oatpp::data::mapping::type::Object {
DTO_INIT(LoginResultDto, Object)
// class LoginResultDto : public oatpp::data::mapping::type::Object {
class LoginResultDto : public oatpp::DTO {
DTO_INIT(LoginResultDto, DTO)
DTO_FIELD(Int32, id);
DTO_FIELD(String, username);
DTO_FIELD(String, token);
DTO_FIELD(String, token_type);
DTO_FIELD(Int32, expiration);
DTO_FIELD(String, message);
DTO_FIELD(oatpp::Int32, id);
DTO_FIELD(oatpp::String, username);
DTO_FIELD(oatpp::String, token);
DTO_FIELD(oatpp::String, token_type);
DTO_FIELD(oatpp::Int32, expiration);
DTO_FIELD(oatpp::String, message);
};
class RegisterResultDto : public oatpp::data::mapping::type::Object {
DTO_INIT(RegisterResultDto, Object)
class RegisterResultDto : public oatpp::DTO {
DTO_INIT(RegisterResultDto, DTO)
DTO_FIELD(String, username);
DTO_FIELD(Boolean, registered);
DTO_FIELD(String, message);
DTO_FIELD(oatpp::String, username);
DTO_FIELD(oatpp::Boolean, registered);
DTO_FIELD(oatpp::String, message);
};
class UserDto : public oatpp::data::mapping::type::Object {
DTO_INIT(UserDto, Object)
class UserDto : public oatpp::DTO {
DTO_INIT(UserDto, DTO)
DTO_FIELD(Int32, userId);
DTO_FIELD(String, firstname);
DTO_FIELD(String, lastname);
DTO_FIELD(String, phone);
DTO_FIELD(String, email);
DTO_FIELD(String, username);
DTO_FIELD(String, password);
DTO_FIELD(oatpp::Int32, userId);
DTO_FIELD(oatpp::String, firstname);
DTO_FIELD(oatpp::String, lastname);
DTO_FIELD(oatpp::String, phone);
DTO_FIELD(oatpp::String, email);
DTO_FIELD(oatpp::String, username);
DTO_FIELD(oatpp::String, password);
};
#include OATPP_CODEGEN_END(DTO)