qleany-common 1.7.8

Shared entities, database, events, and undo/redo infrastructure for Qleany
Documentation
// Generated by Qleany v1.7.0 from common_entity_table.tera

// ═══════════════════════════════════════════════════════════════════════
// Leaf entity (no forward relationships) — macro implementation
// ═══════════════════════════════════════════════════════════════════════

use super::dto_field_repository::DtoFieldTable;
use super::dto_field_repository::DtoFieldTableRO;
use crate::entities::DtoField;

crate::impl_leaf_entity_table!(
    entity: DtoField,
    entity_name: "dto_field",
    store_field: dto_fields,
    table_trait: DtoFieldTable,
    table_ro_trait: DtoFieldTableRO,
    table_struct: DtoFieldHashMapTable,
    table_ro_struct: DtoFieldHashMapTableRO,
    backward_junctions: [

        (jn_dto_field_from_dto_fields),
    ],
);