14 lines
445 B
Go
14 lines
445 B
Go
package proto
|
|
|
|
// 基础统计信息,会话数,问答数,用户数,今日处理问答数
|
|
type DashBoardStatisticsSt struct {
|
|
SessionNum int64 `json:"session_num"`
|
|
MessageCount int64 `json:"message_count"`
|
|
UserCount int64 `json:"user_count"`
|
|
TodayMessageCount int64 `json:"today_message_count"`
|
|
}
|
|
|
|
type DashBoardStatisticsResp struct {
|
|
DashBoardStatisticsSt DashBoardStatisticsSt `json:"dashboard_statistics_st"`
|
|
}
|