uint ->int
This commit is contained in:
parent
33f16fa49b
commit
d8fbc61280
|
@ -9,7 +9,7 @@ import (
|
||||||
|
|
||||||
type ReportChannelListRequest struct {
|
type ReportChannelListRequest struct {
|
||||||
entities.PageRequest
|
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"`
|
Status int `json:"status" form:"status"`
|
||||||
ClientKey string `json:"client_key" form:"client_key"`
|
ClientKey string `json:"client_key" form:"client_key"`
|
||||||
ClientSecret string `json:"client_secret" form:"client_secret"`
|
ClientSecret string `json:"client_secret" form:"client_secret"`
|
||||||
|
@ -19,7 +19,7 @@ type ReportChannelListRequest struct {
|
||||||
|
|
||||||
type ReportChannelList struct {
|
type ReportChannelList struct {
|
||||||
entities.PageRequest
|
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"`
|
Status int `json:"status" form:"status"`
|
||||||
ClientKey string `json:"client_key" form:"client_key"`
|
ClientKey string `json:"client_key" form:"client_key"`
|
||||||
ClientSecret string `json:"client_secret" form:"client_secret"`
|
ClientSecret string `json:"client_secret" form:"client_secret"`
|
||||||
|
@ -58,7 +58,7 @@ func (this *ReportChannelListRequest) Request2DB() (filter ReportChannelList, er
|
||||||
}
|
}
|
||||||
|
|
||||||
type ReportChannelListResponse struct {
|
type ReportChannelListResponse struct {
|
||||||
ReportChannelId uint `json:"report_channel_id"`
|
ReportChannelId int `json:"report_channel_id"`
|
||||||
ClientKey string `json:"client_key"`
|
ClientKey string `json:"client_key"`
|
||||||
ClientSecret string `json:"client_secret"`
|
ClientSecret string `json:"client_secret"`
|
||||||
Config string `json:"config"`
|
Config string `json:"config"`
|
||||||
|
@ -93,7 +93,7 @@ func (this *ReportChannelCreateRequest) Request2DB() (db cronreportchannelmodel.
|
||||||
}
|
}
|
||||||
|
|
||||||
type ReportChannelUpdateRequest struct {
|
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"`
|
ClientKey string `json:"client_key" label:"配置key"`
|
||||||
ClientSecret string `json:"client_secret" label:"配置密钥"`
|
ClientSecret string `json:"client_secret" label:"配置密钥"`
|
||||||
Config string `json:"config" label:"配置"`
|
Config string `json:"config" label:"配置"`
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package entities
|
package entities
|
||||||
|
|
||||||
type IdRequest struct {
|
type IdRequest struct {
|
||||||
Id uint `json:"id" form:"id"`
|
Id int `json:"id" form:"id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type PageRequest struct {
|
type PageRequest struct {
|
||||||
|
|
|
@ -13,7 +13,7 @@ var (
|
||||||
|
|
||||||
// 实体
|
// 实体
|
||||||
type CronReportChannel struct {
|
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)"`
|
ClientKey string `xorm:"'client_key' varchar(20)"`
|
||||||
ClientSecret string `xorm:"'client_secret' varchar(50)"`
|
ClientSecret string `xorm:"'client_secret' varchar(50)"`
|
||||||
Config string `xorm:"'config' JSON"`
|
Config string `xorm:"'config' JSON"`
|
||||||
|
|
|
@ -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 func(g *xorm.Session) *xorm.Session {
|
||||||
return g.Where("report_channel_id = ?", id)
|
return g.Where("report_channel_id = ?", id)
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ func ReportChannelList(param backend.ReportChannelList) (list []cronreportchanne
|
||||||
)
|
)
|
||||||
opts = append(opts, repo.WithDesc("report_channel_id"))
|
opts = append(opts, repo.WithDesc("report_channel_id"))
|
||||||
if param.ReportChannelId > 0 {
|
if param.ReportChannelId > 0 {
|
||||||
opts = append(opts, repo.WithByID(uint(param.ReportChannelId)))
|
opts = append(opts, repo.WithByID(param.ReportChannelId))
|
||||||
}
|
}
|
||||||
if param.Status > 0 {
|
if param.Status > 0 {
|
||||||
opts = append(opts, repo.WithByStatus(param.Status))
|
opts = append(opts, repo.WithByStatus(param.Status))
|
||||||
|
|
Loading…
Reference in New Issue