bug fixed

This commit is contained in:
병준 박 2022-08-14 07:18:35 +00:00
parent f9ac4e030e
commit 9ca07a9319

View File

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