14 lines
362 B
Rust
14 lines
362 B
Rust
use sea_orm::entity::prelude::*;
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)]
|
|
#[sea_orm(table_name = "t_player_item_uid")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub player_uid: i32,
|
|
pub last_item_uid: i32,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|