修复entry_id不展示问题,去掉channel里面的密钥
This commit is contained in:
parent
1a89850b5f
commit
3f1f2286e1
|
@ -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
|
||||
|
|
|
@ -12,7 +12,7 @@ type ReportChannelListRequest struct {
|
|||
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"`
|
||||
//ClientSecret string `json:"client_secret" form:"client_secret"`
|
||||
CreateTime []string `json:"create_time" form:"create_time"`
|
||||
UpdateTime []string `json:"update_time" form:"update_time"`
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ type ReportChannelList struct {
|
|||
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"`
|
||||
//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"`
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ func (this *ReportChannelListRequest) Request2DB() (filter ReportChannelList, er
|
|||
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,7 +60,7 @@ 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"`
|
||||
//ClientSecret string `json:"client_secret"`
|
||||
Config string `json:"config"`
|
||||
CreateTime string `json:"create_time"`
|
||||
Status int `json:"status"`
|
||||
|
@ -70,7 +70,7 @@ type ReportChannelListResponse struct {
|
|||
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
|
||||
|
|
|
@ -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]))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue