generated from phundrak/rust-poem-openapi-template
10 lines
164 B
Rust
10 lines
164 B
Rust
|
use georm::Georm;
|
||
|
|
||
|
#[derive(Debug, Georm)]
|
||
|
#[georm(table = "tests.authors")]
|
||
|
struct Author {
|
||
|
#[georm(column = "author_id", id)]
|
||
|
id: i32,
|
||
|
name: String
|
||
|
}
|