20#ifndef ORES_REFDATA_CORE_REPOSITORY_PARTY_IDENTIFIER_ENTITY_HPP
21#define ORES_REFDATA_CORE_REPOSITORY_PARTY_IDENTIFIER_ENTITY_HPP
24#include "ores.database/repository/db_types.hpp"
25#include "sqlgen/PrimaryKey.hpp"
35 constexpr static const char* schema =
"public";
36 constexpr static const char* tablename =
"ores_refdata_party_identifiers_tbl";
38 sqlgen::PrimaryKey<std::string> id;
39 std::string tenant_id;
42 std::string id_scheme;
44 std::string description;
45 std::string modified_by;
46 std::string performed_by;
47 std::string change_reason_code;
48 std::string change_commentary;
ores::database::repository::db_timestamp db_timestamp
Canonical database timestamp type.
Definition database_info_entity.hpp:31
Database persistence layer for risk domain types.
Definition asset_class_repository.hpp:29
Represents a party identifier in the database.
Definition party_identifier_entity.hpp:34