gitdataai/lib/model/workspace/wk_history_name.rs
2026-05-30 01:38:40 +08:00

14 lines
323 B
Rust

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use sqlx::FromRow;
use uuid::Uuid;
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)]
pub struct WkHistoryNameModel {
pub id: Uuid,
pub wk: Uuid,
pub name: String,
pub changed_by: Uuid,
pub created_at: DateTime<Utc>,
}