20 lines
574 B
Rust
Raw Normal View History

2022-08-12 06:13:39 +00:00
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Bank {
2022-08-14 07:18:35 +00:00
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
#[prost(uint32, tag = "3")]
pub sort_order: u32,
#[prost(bool, tag = "4")]
pub show: bool,
#[prost(bool, tag = "5")]
pub can_use: bool,
#[prost(string, optional, tag = "6")]
pub memo: ::core::option::Option<::prost::alloc::string::String>,
#[prost(uint64, tag = "7")]
pub created_at: u64,
#[prost(uint64, tag = "8")]
pub updated_at: u64,
2022-08-12 06:13:39 +00:00
}