This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
rust-demo/src/models/user.rs
2024-11-06 21:50:58 +08:00

9 lines
180 B
Rust

use mysql::serde;
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct User {
pub id: i32,
pub name: String,
pub age: i32,
pub email: String,
}