use sea_orm::entity::prelude::*;
#[sea_orm::model]
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
#[sea_orm(table_name = "order")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i32,
#[sea_orm(column_type = "Decimal(Some((16, 4)))")]
pub total: Decimal,
pub bakery_id: i32,
pub customer_id: i32,
pub placed_at: DateTimeWithTimeZone,
#[sea_orm(belongs_to, from = "bakery_id", to = "id")]
pub bakery: HasOne<super::bakery::Entity>,
#[sea_orm(belongs_to, from = "customer_id", to = "id")]
pub customer: HasOne<super::customer::Entity>,
#[sea_orm(has_many)]
pub lineitems: HasMany<super::lineitem::Entity>,
}
impl ActiveModelBehavior for ActiveModel {}