feat:消息渠道fix

This commit is contained in:
wolter 2024-11-28 15:59:38 +08:00
parent 935240b36b
commit 0365a24685
2 changed files with 3 additions and 1 deletions

View File

@ -64,6 +64,7 @@ type ReportChannelListResponse struct {
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) {
@ -73,6 +74,7 @@ func (this *ReportChannelListResponse) FromDb(in cronreportchannelmodel.CronRepo
this.Config = in.Config
this.CreateTime = in.CreateTime.Format("2006-01-02 15:04:05")
this.Status = in.Status
this.UpdateTime = in.UpdateTime.Format("2006-01-02 15:04:05")
}
type ReportChannelCreateRequest struct {

View File

@ -22,7 +22,7 @@ func ReportChannelList(param backend.ReportChannelList) (list []cronreportchanne
repo = repository.NewReportChannelRepo()
opts = make([]repository.DBOption, 0)
)
opts = append(opts, repo.WithDesc("report_channel_id"))
if param.ReportChannelId > 0 {
opts = append(opts, repo.WithByID(uint(param.ReportChannelId)))
}