20#ifndef ORES_DQ_CORE_REPOSITORY_BADGE_MAPPING_ENTITY_HPP
21#define ORES_DQ_CORE_REPOSITORY_BADGE_MAPPING_ENTITY_HPP
26#include "sqlgen/Timestamp.hpp"
28namespace ores::dq::repository {
37 constexpr static const char* schema =
"public";
38 constexpr static const char* tablename =
"ores_dq_badge_mappings_tbl";
40 std::string code_domain_code;
41 std::string tenant_id;
42 std::string entity_code;
43 std::string badge_code;
44 std::optional<sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S">> valid_from;
45 std::optional<sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S">> valid_to;
Read-only projection of badge mapping rows from ores_dq_badge_mappings_tbl.
Definition badge_mapping_entity.hpp:36