修改修改公共beans包路径

This commit is contained in:
2025-12-31 11:18:52 +08:00
parent 30158f3fa5
commit 1ce24a84cd
11 changed files with 73 additions and 73 deletions

View File

@@ -3,15 +3,15 @@ package entity
import (
"time"
"gitee.com/red-future---jilin-g/common/do"
"gitee.com/red-future---jilin-g/common/beans"
)
// OrderYearlyStatistics 订单年度统计数据实体
type OrderYearlyStatistics struct {
do.MongoBaseDO `bson:",inline"`
ReportDate time.Time `bson:"report_date" json:"report_date"` // 统计日期(年度第一天)
Period string `bson:"period" json:"period"` // 统计周期描述: 2024
Year int `bson:"year" json:"year"` // 年份
beans.MongoBaseDO `bson:",inline"`
ReportDate time.Time `bson:"report_date" json:"report_date"` // 统计日期(年度第一天)
Period string `bson:"period" json:"period"` // 统计周期描述: 2024
Year int `bson:"year" json:"year"` // 年份
// 订单基础统计
TotalOrders int64 `bson:"total_orders" json:"total_orders"` // 总订单数