20#ifndef ORES_DQ_CORE_REPOSITORY_NATURE_DIMENSION_ENTITY_HPP
21#define ORES_DQ_CORE_REPOSITORY_NATURE_DIMENSION_ENTITY_HPP
24#include "sqlgen/Timestamp.hpp"
25#include "sqlgen/PrimaryKey.hpp"
27namespace ores::dq::repository {
33 constexpr static const char* schema =
"public";
34 constexpr static const char* tablename =
"ores_dq_nature_dimensions_tbl";
36 sqlgen::PrimaryKey<std::string> code;
37 std::string tenant_id;
40 std::string description;
41 std::string modified_by;
42 std::string performed_by;
43 std::string change_commentary;
44 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_from =
"9999-12-31 23:59:59";
45 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_to =
"9999-12-31 23:59:59";
Represents a nature_dimension in the database.
Definition nature_dimension_entity.hpp:32