From b9d594f8a46da981a6b2451e896c028a3101f5e3 Mon Sep 17 00:00:00 2001 From: dengbiao Date: Mon, 22 Jul 2024 20:08:38 +0800 Subject: [PATCH] 2 --- src/models/official/model/master_b2c_order_statistics.go | 2 +- src/models/official/model/master_mall_order_statistics.go | 2 +- src/models/official/model/master_o2o_order_statistics.go | 2 +- src/models/official/model/master_o2o_pay_order_statistics.go | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/models/official/model/master_b2c_order_statistics.go b/src/models/official/model/master_b2c_order_statistics.go index 17c0f99..e7a6297 100644 --- a/src/models/official/model/master_b2c_order_statistics.go +++ b/src/models/official/model/master_b2c_order_statistics.go @@ -5,7 +5,7 @@ type MasterB2cOrderStatistics struct { MasterId int `json:"master_id" xorm:"not null default 0 comment('站长id') INT(11)"` PaymentTotal string `json:"payment_total" xorm:"not null default 0.0000 comment('付款金额(元)') DECIMAL(10,4)"` OrderCount int `json:"order_count" xorm:"not null default 0 comment('订单数量(笔)') INT(11)"` - EstimatedProfit string `json:"estimated_profit" xorm:"not null default 0.0000 comment('预估利润(元)') DECIMAL(10,4)"` + EstimatedCommission string `json:"estimated_commission" xorm:"not null default 0.0000 comment('预估佣金(元)') DECIMAL(10,4)"` LoseOrderCount int `json:"lose_order_count" xorm:"not null default 0 comment('失效订单(笔)') INT(11)"` PlaceOrderNumOfPeople int `json:"place_order_num_of_people" xorm:"not null default 0 comment('下单人数(个)') INT(11)"` EffectiveOrderCount int `json:"effective_order_count" xorm:"not null default 0 comment('有效订单(笔)') INT(11)"` diff --git a/src/models/official/model/master_mall_order_statistics.go b/src/models/official/model/master_mall_order_statistics.go index f6b0b58..b4d8f4c 100644 --- a/src/models/official/model/master_mall_order_statistics.go +++ b/src/models/official/model/master_mall_order_statistics.go @@ -5,7 +5,7 @@ type MasterMallOrderStatistics struct { MasterId int `json:"master_id" xorm:"not null default 0 comment('站长id') INT(11)"` PaymentTotal string `json:"payment_total" xorm:"not null default 0.0000 comment('付款金额(元)') DECIMAL(10,4)"` OrderCount int `json:"order_count" xorm:"not null default 0 comment('订单数量(笔)') INT(11)"` - EstimatedProfit string `json:"estimated_profit" xorm:"not null default 0.0000 comment('预估利润(元)') DECIMAL(10,4)"` + EstimatedCommission string `json:"estimated_commission" xorm:"not null default 0.0000 comment('预估佣金(元)') DECIMAL(10,4)"` LoseOrderCount int `json:"lose_order_count" xorm:"not null default 0 comment('失效订单(笔)') INT(11)"` PlaceOrderNumOfPeople int `json:"place_order_num_of_people" xorm:"not null default 0 comment('下单人数(个)') INT(11)"` EffectiveOrderCount int `json:"effective_order_count" xorm:"not null default 0 comment('有效订单(笔)') INT(11)"` diff --git a/src/models/official/model/master_o2o_order_statistics.go b/src/models/official/model/master_o2o_order_statistics.go index 7140eb1..ec5028c 100644 --- a/src/models/official/model/master_o2o_order_statistics.go +++ b/src/models/official/model/master_o2o_order_statistics.go @@ -5,7 +5,7 @@ type MasterO2oOrderStatistics struct { MasterId int `json:"master_id" xorm:"not null default 0 comment('站长id') INT(11)"` PaymentTotal string `json:"payment_total" xorm:"not null default 0.0000 comment('付款金额(元)') DECIMAL(10,4)"` OrderCount int `json:"order_count" xorm:"not null default 0 comment('订单数量(笔)') INT(11)"` - EstimatedProfit string `json:"estimated_profit" xorm:"not null default 0.0000 comment('预估利润(元)') DECIMAL(10,4)"` + EstimatedCommission string `json:"estimated_commission" xorm:"not null default 0.0000 comment('预估佣金(元)') DECIMAL(10,4)"` LoseOrderCount int `json:"lose_order_count" xorm:"not null default 0 comment('失效订单(笔)') INT(11)"` PlaceOrderNumOfPeople int `json:"place_order_num_of_people" xorm:"not null default 0 comment('下单人数(个)') INT(11)"` EffectiveOrderCount int `json:"effective_order_count" xorm:"not null default 0 comment('有效订单(笔)') INT(11)"` diff --git a/src/models/official/model/master_o2o_pay_order_statistics.go b/src/models/official/model/master_o2o_pay_order_statistics.go index 322c4ee..0e1cf1e 100644 --- a/src/models/official/model/master_o2o_pay_order_statistics.go +++ b/src/models/official/model/master_o2o_pay_order_statistics.go @@ -5,6 +5,7 @@ type MasterO2oPayOrderStatistics struct { MasterId int `json:"master_id" xorm:"not null default 0 comment('站长id') INT(11)"` PaymentTotal string `json:"payment_total" xorm:"not null default 0.0000 comment('付款金额(元)') DECIMAL(10,4)"` OrderCount int `json:"order_count" xorm:"not null default 0 comment('订单数量(笔)') INT(11)"` + EstimatedCommission string `json:"estimated_commission" xorm:"not null default 0.0000 comment('预估佣金(元)') DECIMAL(10,4)"` PlaceOrderNumOfPeople int `json:"place_order_num_of_people" xorm:"not null default 0 comment('下单人数(个)') INT(11)"` AvgCommission string `json:"avg_commission" xorm:"not null default 0.0000 comment('平均佣金(元)') DECIMAL(10,4)"` CustomerUnitPrice string `json:"customer_unit_price" xorm:"not null default 0.0000 comment('客单价(元)') DECIMAL(10,4)"`