2023-04-21 23:39:52 +00:00
|
|
|
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.7
|
|
|
|
|
|
|
|
use sea_orm::entity::prelude::*;
|
2023-07-20 13:38:52 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-21 23:39:52 +00:00
|
|
|
|
2023-07-20 13:38:52 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
2023-04-21 23:39:52 +00:00
|
|
|
#[sea_orm(table_name = "registration_ticket")]
|
|
|
|
pub struct Model {
|
|
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
|
|
pub id: String,
|
|
|
|
#[sea_orm(column_name = "createdAt")]
|
|
|
|
pub created_at: DateTimeWithTimeZone,
|
|
|
|
pub code: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|