sea-orm-codegen 2.0.0

Code Generator for SeaORM
Documentation
1
2
3
4
5
6
7
8
9
//! SeaORM Entity. Generated by sea-orm-codegen 0.1.0

#[derive(Clone, Debug, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
#[ts(export)]
pub struct Model {
    pub id: i32,
    pub name: Option<String> ,
}