From d8fbc612802a17f9ee90a762d9307424158cfc8f Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Fri, 29 Nov 2024 15:45:53 +0800 Subject: [PATCH] uint ->int --- app/http/entities/backend/corn_report_channel.go | 8 ++++---- app/http/entities/common.go | 2 +- app/models/cronreportchannelmodel/cron_report_channel.go | 2 +- app/repository/cron_report_channel.go | 2 +- app/services/cron_report_channel_service.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/http/entities/backend/corn_report_channel.go b/app/http/entities/backend/corn_report_channel.go index f7e0d0c..bda5076 100644 --- a/app/http/entities/backend/corn_report_channel.go +++ b/app/http/entities/backend/corn_report_channel.go @@ -9,7 +9,7 @@ import ( type ReportChannelListRequest struct { entities.PageRequest - ReportChannelId uint `json:"report_channel_id" form:"report_channel_id" validate:"min=0"` + ReportChannelId int `json:"report_channel_id" form:"report_channel_id" validate:"min=0"` Status int `json:"status" form:"status"` ClientKey string `json:"client_key" form:"client_key"` ClientSecret string `json:"client_secret" form:"client_secret"` @@ -19,7 +19,7 @@ type ReportChannelListRequest struct { type ReportChannelList struct { entities.PageRequest - ReportChannelId uint `json:"report_channel_id" form:"report_channel_id" validate:"min=0"` + ReportChannelId int `json:"report_channel_id" form:"report_channel_id" validate:"min=0"` Status int `json:"status" form:"status"` ClientKey string `json:"client_key" form:"client_key"` ClientSecret string `json:"client_secret" form:"client_secret"` @@ -58,7 +58,7 @@ func (this *ReportChannelListRequest) Request2DB() (filter ReportChannelList, er } type ReportChannelListResponse struct { - ReportChannelId uint `json:"report_channel_id"` + ReportChannelId int `json:"report_channel_id"` ClientKey string `json:"client_key"` ClientSecret string `json:"client_secret"` Config string `json:"config"` @@ -93,7 +93,7 @@ func (this *ReportChannelCreateRequest) Request2DB() (db cronreportchannelmodel. } type ReportChannelUpdateRequest struct { - ReportChannelId uint `json:"report_channel_id" validate:"required" ` + ReportChannelId int `json:"report_channel_id" validate:"required" ` ClientKey string `json:"client_key" label:"配置key"` ClientSecret string `json:"client_secret" label:"配置密钥"` Config string `json:"config" label:"配置"` diff --git a/app/http/entities/common.go b/app/http/entities/common.go index 516f1ab..1f7e2fc 100644 --- a/app/http/entities/common.go +++ b/app/http/entities/common.go @@ -1,7 +1,7 @@ package entities type IdRequest struct { - Id uint `json:"id" form:"id"` + Id int `json:"id" form:"id"` } type PageRequest struct { diff --git a/app/models/cronreportchannelmodel/cron_report_channel.go b/app/models/cronreportchannelmodel/cron_report_channel.go index 56bdd6d..5895dbf 100644 --- a/app/models/cronreportchannelmodel/cron_report_channel.go +++ b/app/models/cronreportchannelmodel/cron_report_channel.go @@ -13,7 +13,7 @@ var ( // 实体 type CronReportChannel struct { - ReportChannelId uint `xorm:"'report_channel_id' UNSIGNED INT pk autoincr"` + ReportChannelId int `xorm:"'report_channel_id' UNSIGNED INT pk autoincr"` ClientKey string `xorm:"'client_key' varchar(20)"` ClientSecret string `xorm:"'client_secret' varchar(50)"` Config string `xorm:"'config' JSON"` diff --git a/app/repository/cron_report_channel.go b/app/repository/cron_report_channel.go index 44f1ae5..77800ec 100644 --- a/app/repository/cron_report_channel.go +++ b/app/repository/cron_report_channel.go @@ -15,7 +15,7 @@ func NewReportChannelRepo() *ReportChannel { } } -func (c *ReportChannel) WithByID(id uint) DBOption { +func (c *ReportChannel) WithByID(id int) DBOption { return func(g *xorm.Session) *xorm.Session { return g.Where("report_channel_id = ?", id) } diff --git a/app/services/cron_report_channel_service.go b/app/services/cron_report_channel_service.go index 8fa4a2a..ccae6d1 100644 --- a/app/services/cron_report_channel_service.go +++ b/app/services/cron_report_channel_service.go @@ -24,7 +24,7 @@ func ReportChannelList(param backend.ReportChannelList) (list []cronreportchanne ) opts = append(opts, repo.WithDesc("report_channel_id")) if param.ReportChannelId > 0 { - opts = append(opts, repo.WithByID(uint(param.ReportChannelId))) + opts = append(opts, repo.WithByID(param.ReportChannelId)) } if param.Status > 0 { opts = append(opts, repo.WithByStatus(param.Status))