Skip to content

Commit

Permalink
fix(report/offline): AdvertiserID in offline report request from stri…
Browse files Browse the repository at this point in the history
…ng to uint64
  • Loading branch information
bububa committed Feb 28, 2024
1 parent 0fa8aec commit 0f1cd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/report/offline/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Request 离线报表数据 API Request
type Request struct {
// AdvertiserID 广告主ID
AdvertiserID string `json:"advertiser_id"`
AdvertiserID uint64 `json:"advertiser_id"`
// StartDate 开始时间,格式 yyyy-MM-dd
StartDate string `json:"start_date,omitempty"`
// EndDate 结束时间,格式 yyyy-MM-dd
Expand Down

0 comments on commit 0f1cd35

Please sign in to comment.