20#ifndef ORES_REFDATA_CORE_REPOSITORY_ROUNDING_TYPE_ENTITY_HPP
21#define ORES_REFDATA_CORE_REPOSITORY_ROUNDING_TYPE_ENTITY_HPP
26#include "ores.database/repository/db_types.hpp"
27#include "sqlgen/PrimaryKey.hpp"
37 constexpr static const char* schema =
"public";
38 constexpr static const char* tablename =
"ores_refdata_rounding_types_tbl";
40 sqlgen::PrimaryKey<std::string> code;
43 std::string description;
45 std::string modified_by;
46 std::string performed_by;
47 std::string change_reason_code;
48 std::string change_commentary;
49 std::optional<db_timestamp> valid_from =
"9999-12-31 23:59:59";
50 std::optional<db_timestamp> valid_to =
"9999-12-31 23:59:59";
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 rounding type in the database.
Definition rounding_type_entity.hpp:36