* add Eq * Fix clippy warnings * Fix test cases Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
39 lines
867 B
Rust
39 lines
867 B
Rust
//! SeaORM Entity. Generated by sea-orm-codegen 0.1.0
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
|
#[sea_orm(table_name = "fruit")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub name: String,
|
|
pub cake_id: Option<i32> ,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(
|
|
belongs_to = "super::cake::Entity",
|
|
from = "Column::CakeId",
|
|
to = "super::cake::Column::Id",
|
|
)]
|
|
Cake,
|
|
#[sea_orm(has_many = "super::vendor::Entity")]
|
|
Vendor,
|
|
}
|
|
|
|
impl Related<super::cake::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Cake.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::vendor::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Vendor.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|