data type of money is changed
This commit is contained in:
parent
927203a136
commit
d74e4851c9
|
@ -38,7 +38,6 @@ pub mod list_games_response {
|
||||||
pub games: ::prost::alloc::vec::Vec<crate::models::api::game::Game>,
|
pub games: ::prost::alloc::vec::Vec<crate::models::api::game::Game>,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct GetGameUrlRequest {
|
pub struct GetGameUrlRequest {
|
||||||
#[prost(string, tag = "1")]
|
#[prost(string, tag = "1")]
|
||||||
|
@ -59,8 +58,8 @@ pub mod get_game_url_response {
|
||||||
pub struct Result {
|
pub struct Result {
|
||||||
#[prost(uint64, tag = "1")]
|
#[prost(uint64, tag = "1")]
|
||||||
pub user_id: u64,
|
pub user_id: u64,
|
||||||
#[prost(uint64, tag = "2")]
|
#[prost(double, tag = "2")]
|
||||||
pub balance: u64,
|
pub balance: f64,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub url: ::prost::alloc::string::String,
|
pub url: ::prost::alloc::string::String,
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
pub struct CreateMemberBankDepositRequest {
|
pub struct CreateMemberBankDepositRequest {
|
||||||
#[prost(string, tag = "1")]
|
#[prost(string, tag = "1")]
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "2")]
|
#[prost(double, tag = "2")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "3")]
|
#[prost(string, optional, tag = "3")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
}
|
}
|
||||||
|
@ -40,8 +40,8 @@ pub mod list_member_bank_deposits_request {
|
||||||
pub member_id: ::core::option::Option<::prost::alloc::string::String>,
|
pub member_id: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(string, optional, tag = "2")]
|
#[prost(string, optional, tag = "2")]
|
||||||
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(uint32, optional, tag = "3")]
|
#[prost(double, optional, tag = "3")]
|
||||||
pub amount: ::core::option::Option<u32>,
|
pub amount: ::core::option::Option<f64>,
|
||||||
#[prost(string, optional, tag = "4")]
|
#[prost(string, optional, tag = "4")]
|
||||||
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(
|
#[prost(
|
||||||
|
@ -95,8 +95,8 @@ pub struct UpdateMemberBankDepositRequest {
|
||||||
pub id: ::prost::alloc::string::String,
|
pub id: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "5")]
|
#[prost(double, tag = "5")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "7")]
|
#[prost(string, optional, tag = "7")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,8 @@ pub struct CreateMemberBankWithdrawRequest {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "4")]
|
#[prost(double, tag = "4")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, tag = "5")]
|
#[prost(string, tag = "5")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "6")]
|
#[prost(string, optional, tag = "6")]
|
||||||
|
@ -50,8 +50,8 @@ pub mod list_member_bank_withdraws_request {
|
||||||
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(string, optional, tag = "4")]
|
#[prost(string, optional, tag = "4")]
|
||||||
pub account_number_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub account_number_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(uint32, optional, tag = "5")]
|
#[prost(double, optional, tag = "5")]
|
||||||
pub amount: ::core::option::Option<u32>,
|
pub amount: ::core::option::Option<f64>,
|
||||||
#[prost(string, optional, tag = "6")]
|
#[prost(string, optional, tag = "6")]
|
||||||
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(
|
#[prost(
|
||||||
|
@ -110,7 +110,7 @@ pub struct UpdateMemberBankWithdrawRequest {
|
||||||
#[prost(string, tag = "4")]
|
#[prost(string, tag = "4")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "5")]
|
#[prost(uint32, tag = "5")]
|
||||||
pub amount: u32,
|
pub double: u32,
|
||||||
#[prost(string, tag = "6")]
|
#[prost(string, tag = "6")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "7")]
|
#[prost(string, optional, tag = "7")]
|
||||||
|
|
|
@ -12,10 +12,10 @@ pub struct Vendor {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "6")]
|
#[prost(string, tag = "6")]
|
||||||
pub category: ::prost::alloc::string::String,
|
pub category: ::prost::alloc::string::String,
|
||||||
#[prost(uint64, tag = "7")]
|
#[prost(double, tag = "7")]
|
||||||
pub max_bet_casino: u64,
|
pub max_bet_casino: f64,
|
||||||
#[prost(uint64, tag = "8")]
|
#[prost(double, tag = "8")]
|
||||||
pub max_bet_slot: u64,
|
pub max_bet_slot: f64,
|
||||||
#[prost(string, tag = "9")]
|
#[prost(string, tag = "9")]
|
||||||
pub is_enable: ::prost::alloc::string::String,
|
pub is_enable: ::prost::alloc::string::String,
|
||||||
#[prost(uint64, tag = "10")]
|
#[prost(uint64, tag = "10")]
|
||||||
|
|
|
@ -6,8 +6,8 @@ pub struct MemberBankDeposit {
|
||||||
pub member_id: ::prost::alloc::string::String,
|
pub member_id: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "4")]
|
#[prost(double, tag = "4")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "5")]
|
#[prost(string, optional, tag = "5")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(enumeration = "MemberBankDepositState", tag = "6")]
|
#[prost(enumeration = "MemberBankDepositState", tag = "6")]
|
||||||
|
@ -27,8 +27,8 @@ pub struct MemberBankDepositModel {
|
||||||
pub member: ::core::option::Option<super::member::Member>,
|
pub member: ::core::option::Option<super::member::Member>,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "4")]
|
#[prost(double, tag = "4")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "5")]
|
#[prost(string, optional, tag = "5")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(enumeration = "MemberBankDepositState", tag = "6")]
|
#[prost(enumeration = "MemberBankDepositState", tag = "6")]
|
||||||
|
|
|
@ -10,8 +10,8 @@ pub struct MemberBankWithdraw {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "5")]
|
#[prost(string, tag = "5")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "6")]
|
#[prost(double, tag = "6")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, tag = "7")]
|
#[prost(string, tag = "7")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "8")]
|
#[prost(string, optional, tag = "8")]
|
||||||
|
@ -37,8 +37,8 @@ pub struct MemberBankWithdrawModel {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "5")]
|
#[prost(string, tag = "5")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "6")]
|
#[prost(double, tag = "6")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, tag = "7")]
|
#[prost(string, tag = "7")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "8")]
|
#[prost(string, optional, tag = "8")]
|
||||||
|
|
|
@ -54,7 +54,6 @@ pub mod list_games_response {
|
||||||
pub games: ::prost::alloc::vec::Vec<crate::models::api::game::Game>,
|
pub games: ::prost::alloc::vec::Vec<crate::models::api::game::Game>,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// subject = bet.beteran.ss.api.game.GetGameUrl
|
/// subject = bet.beteran.ss.api.game.GetGameUrl
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct GetGameUrlRequest {
|
pub struct GetGameUrlRequest {
|
||||||
|
@ -88,8 +87,8 @@ pub mod get_game_url_response {
|
||||||
pub struct Result {
|
pub struct Result {
|
||||||
#[prost(uint64, tag = "1")]
|
#[prost(uint64, tag = "1")]
|
||||||
pub user_id: u64,
|
pub user_id: u64,
|
||||||
#[prost(uint64, tag = "2")]
|
#[prost(double, tag = "2")]
|
||||||
pub balance: u64,
|
pub balance: f64,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub url: ::prost::alloc::string::String,
|
pub url: ::prost::alloc::string::String,
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,8 +33,8 @@ pub mod create_member_bank_deposit_request {
|
||||||
pub member_id: ::prost::alloc::string::String,
|
pub member_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(uint32, tag = "3")]
|
#[prost(double, tag = "3")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "4")]
|
#[prost(string, optional, tag = "4")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
}
|
}
|
||||||
|
@ -82,8 +82,8 @@ pub mod list_member_bank_deposits_request {
|
||||||
pub member_id: ::core::option::Option<::prost::alloc::string::String>,
|
pub member_id: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(string, optional, tag = "2")]
|
#[prost(string, optional, tag = "2")]
|
||||||
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(uint32, optional, tag = "3")]
|
#[prost(double, optional, tag = "3")]
|
||||||
pub amount: ::core::option::Option<u32>,
|
pub amount: ::core::option::Option<f64>,
|
||||||
#[prost(string, optional, tag = "4")]
|
#[prost(string, optional, tag = "4")]
|
||||||
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(
|
#[prost(
|
||||||
|
@ -159,8 +159,8 @@ pub mod update_member_bank_deposit_request {
|
||||||
pub id: ::prost::alloc::string::String,
|
pub id: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "3")]
|
#[prost(string, tag = "3")]
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "5")]
|
#[prost(double, tag = "5")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, optional, tag = "7")]
|
#[prost(string, optional, tag = "7")]
|
||||||
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
}
|
}
|
||||||
|
@ -246,7 +246,6 @@ pub mod delete_member_bank_deposit_response {
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct Result {}
|
pub struct Result {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// subject = bet.beteran.ss_event.member_bank_deposit.AfterUpdateMemberBankDepositForState
|
/// subject = bet.beteran.ss_event.member_bank_deposit.AfterUpdateMemberBankDepositForState
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct AfterUpdateMemberBankDepositForState {
|
pub struct AfterUpdateMemberBankDepositForState {
|
||||||
|
|
|
@ -37,8 +37,8 @@ pub mod create_member_bank_withdraw_request {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "4")]
|
#[prost(string, tag = "4")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "5")]
|
#[prost(double, tag = "5")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, tag = "6")]
|
#[prost(string, tag = "6")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "7")]
|
#[prost(string, optional, tag = "7")]
|
||||||
|
@ -92,8 +92,8 @@ pub mod list_member_bank_withdraws_request {
|
||||||
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub name_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(string, optional, tag = "4")]
|
#[prost(string, optional, tag = "4")]
|
||||||
pub account_number_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub account_number_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(uint32, optional, tag = "5")]
|
#[prost(double, optional, tag = "5")]
|
||||||
pub amount: ::core::option::Option<u32>,
|
pub amount: ::core::option::Option<f64>,
|
||||||
#[prost(string, optional, tag = "6")]
|
#[prost(string, optional, tag = "6")]
|
||||||
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
pub memo_like: ::core::option::Option<::prost::alloc::string::String>,
|
||||||
#[prost(
|
#[prost(
|
||||||
|
@ -173,8 +173,8 @@ pub mod update_member_bank_withdraw_request {
|
||||||
pub name: ::prost::alloc::string::String,
|
pub name: ::prost::alloc::string::String,
|
||||||
#[prost(string, tag = "4")]
|
#[prost(string, tag = "4")]
|
||||||
pub account_number: ::prost::alloc::string::String,
|
pub account_number: ::prost::alloc::string::String,
|
||||||
#[prost(uint32, tag = "5")]
|
#[prost(double, tag = "5")]
|
||||||
pub amount: u32,
|
pub amount: f64,
|
||||||
#[prost(string, tag = "6")]
|
#[prost(string, tag = "6")]
|
||||||
pub password: ::prost::alloc::string::String,
|
pub password: ::prost::alloc::string::String,
|
||||||
#[prost(string, optional, tag = "7")]
|
#[prost(string, optional, tag = "7")]
|
||||||
|
@ -262,7 +262,6 @@ pub mod delete_member_bank_withdraw_response {
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct Result {}
|
pub struct Result {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// subject = bet.beteran.ss_event.member_bank_withdraw.AfterUpdateMemberBankWithdrawForState
|
/// subject = bet.beteran.ss_event.member_bank_withdraw.AfterUpdateMemberBankWithdrawForState
|
||||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||||
pub struct AfterUpdateMemberBankWithdrawForState {
|
pub struct AfterUpdateMemberBankWithdrawForState {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user