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