datasynth-core 2.3.0

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Balance and trial balance models.
//!
//! This module provides models for:
//! - Account balances and snapshots
//! - Trial balance generation
//! - Opening balance specifications
//! - Balance relationship rules (DSO, DPO, gross margin)

mod account_balance;
mod balance_relationship;
mod opening_balance;
mod trial_balance;

pub use account_balance::*;
pub use balance_relationship::*;
pub use opening_balance::*;
pub use trial_balance::*;