diff --git a/app/http/entities/backend/cmd.go b/app/http/entities/backend/cmd.go index f6bca20..5ef75a6 100644 --- a/app/http/entities/backend/cmd.go +++ b/app/http/entities/backend/cmd.go @@ -107,6 +107,7 @@ func (response *CmdListResponse) ResponseFromDb(l croncmdmodel.CronCmd) { response.CmdId = l.CmdId response.CmdName = l.CmdName response.UserIds = l.UserIds + response.EntryId = l.EntryId response.Status = l.Status response.ReadDbId = l.ReadDbId response.WriteDbId = l.WriteDbId diff --git a/app/http/entities/backend/corn_report_channel.go b/app/http/entities/backend/corn_report_channel.go index bda5076..dc259c9 100644 --- a/app/http/entities/backend/corn_report_channel.go +++ b/app/http/entities/backend/corn_report_channel.go @@ -9,29 +9,29 @@ import ( type ReportChannelListRequest struct { entities.PageRequest - 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"` - CreateTime []string `json:"create_time" form:"create_time"` - UpdateTime []string `json:"update_time" form:"update_time"` + 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"` + CreateTime []string `json:"create_time" form:"create_time"` + UpdateTime []string `json:"update_time" form:"update_time"` } type ReportChannelList struct { entities.PageRequest - 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"` - CreateTime []time.Time `json:"create_time" form:"create_time"` - UpdateTime []time.Time `json:"update_time" form:"update_time"` + 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"` + CreateTime []time.Time `json:"create_time" form:"create_time"` + UpdateTime []time.Time `json:"update_time" form:"update_time"` } func (this *ReportChannelListRequest) Request2DB() (filter ReportChannelList, err error) { filter.PageRequest = this.PageRequest filter.ReportChannelId = this.ReportChannelId filter.ClientKey = this.ClientKey - filter.ClientSecret = this.ClientSecret + //filter.ClientSecret = this.ClientSecret filter.Status = this.Status filter.CreateTime = []time.Time{} var t time.Time @@ -60,17 +60,17 @@ func (this *ReportChannelListRequest) Request2DB() (filter ReportChannelList, er type ReportChannelListResponse struct { ReportChannelId int `json:"report_channel_id"` ClientKey string `json:"client_key"` - ClientSecret string `json:"client_secret"` - Config string `json:"config"` - CreateTime string `json:"create_time"` - Status int `json:"status"` - UpdateTime string `json:"update_time"` + //ClientSecret string `json:"client_secret"` + Config string `json:"config"` + CreateTime string `json:"create_time"` + Status int `json:"status"` + UpdateTime string `json:"update_time"` } func (this *ReportChannelListResponse) FromDb(in cronreportchannelmodel.CronReportChannel) { this.ReportChannelId = in.ReportChannelId this.ClientKey = in.ClientKey - this.ClientSecret = in.ClientSecret + //this.ClientSecret = in.ClientSecret this.Config = in.Config this.CreateTime = in.CreateTime.Format("2006-01-02 15:04:05") this.Status = in.Status diff --git a/app/services/cron_report_channel_service.go b/app/services/cron_report_channel_service.go index ccae6d1..c709a2c 100644 --- a/app/services/cron_report_channel_service.go +++ b/app/services/cron_report_channel_service.go @@ -35,9 +35,9 @@ func ReportChannelList(param backend.ReportChannelList) (list []cronreportchanne if param.ClientKey != "" { opts = append(opts, repo.WithLikeClientKey(param.ClientKey)) } - if param.ClientSecret != "" { - opts = append(opts, repo.WithLikeClientSecret(param.ClientSecret)) - } + //if param.ClientSecret != "" { + // opts = append(opts, repo.WithLikeClientSecret(param.ClientSecret)) + //} if len(param.UpdateTime) == 2 { opts = append(opts, repo.WithByUpdateDate(param.UpdateTime[0], param.UpdateTime[1])) }