From 518a23c71da5eb23f1bc26d03e77cc6a2e25a0b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Fri, 9 Jan 2026 09:24:31 +0800 Subject: [PATCH] 1 --- business/model/settlement_info.go | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/business/model/settlement_info.go b/business/model/settlement_info.go index a51c1b0ca..875acee1b 100644 --- a/business/model/settlement_info.go +++ b/business/model/settlement_info.go @@ -33,20 +33,20 @@ type JxSettlementInfo struct { // SettlementByCityCode 根据城市统计 type SettlementByCityCode struct { - CityName string `json:"city_name"` // 市 - JxStoreID int64 `json:"jx_store_id" orm:"column(jx_store_id)"` // jx门店ID - BrandId int `json:"brand_id"` // 品牌ID - UserName string `json:"user_name"` // 名称 - Mobile string `json:"mobile"` // 电话 - OrderCount int `json:"order_count"` // 有效订单数 - PackageSetting int `json:"package_setting"` // 服务费 - PackagingFee int `json:"packaging_fee"` // 包装费-每单0.4元 - TotalDesiredFee int `json:"total_desired_fee"` // 总运费 - JxIncome float64 `json:"jx_income"` // 京西收益 - MarketIncome float64 `json:"market_income"` // 市场收益 - StoreInCome float64 `json:"store_income"` // 门店收入 - TotalShopMoney int `json:"total_shop_money"` // 平台结算金额 - PlatformIncome float64 `json:"platform_income"` // 平台收益 - RefundMoney int `json:"refund_money"` // 订单售后金额 - Profit float64 `json:"-"` // 纯收益 + CityName string `json:"city_name"` // 市 + JxStoreID int64 `json:"jx_store_id" orm:"column(jx_store_id)"` // jx门店ID + BrandId int `json:"brand_id"` // 品牌ID + UserName string `json:"user_name"` // 名称 + Mobile string `json:"mobile"` // 电话 + OrderCount int `json:"order_count"` // 有效订单数 + PackageSetting int `json:"package_setting"` // 服务费 + PackagingFee int `json:"packaging_fee"` // 包装费-每单0.4元 + TotalDesiredFee int `json:"total_desired_fee"` // 总运费 + JxIncome float64 `json:"jx_income"` // 京西收益 + MarketIncome float64 `json:"market_income"` // 市场收益 + StoreInCome float64 `json:"store_income" orm:"column(store_income)"` // 门店收入 + TotalShopMoney int `json:"total_shop_money"` // 平台结算金额 + PlatformIncome float64 `json:"platform_income"` // 平台收益 + RefundMoney int `json:"refund_money"` // 订单售后金额 + Profit float64 `json:"-"` // 纯收益 }