use sea_orm::entity::prelude::*;
#[sea_orm::model]
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
#[sea_orm(table_name = "bakery")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i32,
pub name: String,
#[sea_orm(column_type = "Double")]
pub profit_margin: f64,
#[sea_orm(has_many)]
pub bakers: HasMany<super::baker::Entity>,
#[sea_orm(has_many)]
pub cakes: HasMany<super::cake::Entity>,
#[sea_orm(has_many)]
pub orders: HasMany<super::order::Entity>,
}
impl ActiveModelBehavior for ActiveModel {}