total_count is added

This commit is contained in:
병준 박 2022-09-01 17:26:54 +00:00
parent ee98a22899
commit d7ddfe5c46
4 changed files with 8 additions and 5 deletions

View File

@ -36,7 +36,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-cron-scheduler = { version = "0" }
uuid = { version = "0", features = ["serde", "v4", "v5"] }
beteran-protobuf-rust = { git = "https://gitlab.loafle.net/bet/beteran-protobuf-rust.git", tag = "v0.1.92-snapshot" }
beteran-common-rust = { git = "https://gitlab.loafle.net/bet/beteran-common-rust.git", tag = "v0.1.78-snapshot" }
beteran-protobuf-rust = { git = "https://gitlab.loafle.net/bet/beteran-protobuf-rust.git", tag = "v0.1.93-snapshot" }
beteran-common-rust = { git = "https://gitlab.loafle.net/bet/beteran-common-rust.git", tag = "v0.1.79-snapshot" }
[build-dependencies]

View File

@ -158,7 +158,7 @@ impl Service {
),
};
let count = self
let total_count = self
.betting_composition
.select_all_count(&conn, &find_all)
.map_err(|e| {
@ -186,6 +186,7 @@ impl Service {
error: None,
result: Some(
bpr::ss::api::betting::list_betting_history_response::Result {
total_count: total_count as u64,
betting_history: list
.iter()
.map(bpr::models::api::betting::BettingHistory::from)

View File

@ -136,7 +136,7 @@ impl Service {
),
};
let count = self
let total_count = self
.game_repository
.select_all_count(&conn, &find_all)
.map_err(|e| {
@ -163,6 +163,7 @@ impl Service {
bpr::ss::api::game::ListGamesResponse {
error: None,
result: Some(bpr::ss::api::game::list_games_response::Result {
total_count: total_count as u64,
games: list
.iter()
.map(bpr::models::api::game::Game::from)

View File

@ -126,7 +126,7 @@ impl Service {
),
};
let count = self
let total_count = self
.vendor_repository
.select_all_count(&conn, &find_all)
.map_err(|e| {
@ -153,6 +153,7 @@ impl Service {
bpr::ss::api::vendor::ListVendorsResponse {
error: None,
result: Some(bpr::ss::api::vendor::list_vendors_response::Result {
total_count: total_count as u64,
vendors: list
.iter()
.map(bpr::models::api::vendor::Vendor::from)