初始化项目

This commit is contained in:
2025-12-10 15:41:52 +08:00
parent 339dd97f66
commit 232009bbc2
25 changed files with 419 additions and 467 deletions

View File

@@ -61,3 +61,10 @@ type GetCIDHistoryRes struct {
Page int `json:"page"` // 当前页
Size int `json:"size"` // 每页数量
}
// TenantInfo 租户信息
type TenantInfo struct {
Id string `json:"id"` // 租户ID
Name string `json:"name"` // 租户名称
Level string `json:"level"` // 租户级别
}

View File

@@ -13,7 +13,7 @@ type ReportGenerateReq struct {
// 报表生成响应
type ReportGenerateResp struct {
ReportID int64 `json:"report_id"`
ReportID string `json:"report_id"`
ReportType string `json:"report_type"`
ReportDate string `json:"report_date"`
Data interface{} `json:"data"`