gomod引用

This commit is contained in:
2025-12-12 16:20:48 +08:00
parent ddf02adaa6
commit 7f1f096fa5
4 changed files with 47 additions and 48 deletions

View File

@@ -52,7 +52,7 @@ type ExportReportReq struct {
// 报表详情响应
type ReportDetailResp struct {
ID int64 `json:"id"`
TenantID int64 `json:"tenant_id"`
TenantID interface{} `json:"tenant_id"`
AppID int64 `json:"app_id"`
ReportType string `json:"report_type"`
ReportDate string `json:"report_date"`
@@ -62,12 +62,12 @@ type ReportDetailResp struct {
// 报表DTO
type ReportDTO struct {
ID int64 `json:"id"`
TenantID int64 `json:"tenant_id"`
AppID int64 `json:"app_id"`
ReportType string `json:"report_type"`
ReportDate string `json:"report_date"`
GeneratedAt string `json:"generated_at"`
ID int64 `json:"id"`
TenantID interface{} `json:"tenant_id"`
AppID int64 `json:"app_id"`
ReportType string `json:"report_type"`
ReportDate string `json:"report_date"`
GeneratedAt string `json:"generated_at"`
}
// 统计查询请求