mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-06-02 22:30:51 +08:00
26 lines
618 B
Rust
26 lines
618 B
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.15
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
use crate::rule::Rule;
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
|
#[sea_orm(table_name = "submission")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub upper_id: i64,
|
|
pub upper_name: String,
|
|
pub path: String,
|
|
pub created_at: String,
|
|
pub use_dynamic_api: bool,
|
|
pub latest_row_at: DateTime,
|
|
pub rule: Option<Rule>,
|
|
pub enabled: bool,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|