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)]
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")]
pub sort_order: bool,
#[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,
#[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,
}