45 lines
1.1 KiB
Rust
45 lines
1.1 KiB
Rust
use crate as sea_orm;
|
|
use crate::entity::prelude::*;
|
|
|
|
#[cfg(feature = "with-json")]
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
|
|
#[cfg_attr(feature = "with-json", derive(Serialize, Deserialize))]
|
|
#[sea_orm(table_name = "cake")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
#[sea_orm(column_name = "name", enum_name = "Name")]
|
|
pub name: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::fruit::Entity")]
|
|
Fruit,
|
|
#[sea_orm(
|
|
has_many = "super::fruit::Entity",
|
|
on_condition = r#"super::fruit::Column::Name.like("%tropical%")"#
|
|
)]
|
|
TropicalFruit,
|
|
}
|
|
|
|
impl Related<super::fruit::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Fruit.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::filling::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
super::cake_filling::Relation::Filling.def()
|
|
}
|
|
|
|
fn via() -> Option<RelationDef> {
|
|
Some(super::cake_filling::Relation::Cake.def().rev())
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|