mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
51 lines
1.4 KiB
Rust
51 lines
1.4 KiB
Rust
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.3
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
|
|
#[sea_orm(table_name = "candidate")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
pub application: i32,
|
|
pub code: String,
|
|
pub name: Option<String>,
|
|
pub surname: Option<String>,
|
|
pub birth_surname: Option<String>,
|
|
pub birthplace: Option<String>,
|
|
pub birthdate: Option<String>,
|
|
pub address: Option<String>,
|
|
pub telephone: Option<String>,
|
|
pub citizenship: Option<String>,
|
|
pub email: Option<String>,
|
|
pub sex: Option<String>,
|
|
pub study: Option<String>,
|
|
pub personal_identification_number: String,
|
|
#[sea_orm(column_type = "Text", nullable)]
|
|
pub personal_identification_number_hash: Option<String>,
|
|
pub public_key: String,
|
|
pub private_key: String,
|
|
pub created_at: DateTime,
|
|
pub updated_at: DateTime,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::session::Entity")]
|
|
Session,
|
|
#[sea_orm(has_many = "super::parent::Entity")]
|
|
Parent,
|
|
}
|
|
|
|
impl Related<super::session::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Session.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::parent::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::Parent.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|