feat: implement biomarker models, reference rules, and data seeding logic

This commit is contained in:
2025-12-19 13:37:55 +05:30
parent 2b02470957
commit baccbee706
13 changed files with 2546 additions and 73 deletions

View File

@@ -1,7 +1,11 @@
//! Biomarker entities for health data tracking.
//! Biomarker-related entities.
pub mod biomarker;
pub mod biomarker_category;
pub mod biomarker_entry;
pub mod biomarker_type;
pub mod biomarker_reference_rule;
pub use biomarker::Entity as Biomarker;
pub use biomarker_category::Entity as BiomarkerCategory;
pub use biomarker_entry::Entity as BiomarkerEntry;
pub use biomarker_type::Entity as BiomarkerType;
pub use biomarker_reference_rule::Entity as BiomarkerReferenceRule;