feat:消息渠道fix
This commit is contained in:
parent
935240b36b
commit
0365a24685
|
@ -64,6 +64,7 @@ type ReportChannelListResponse struct {
|
||||||
Config string `json:"config"`
|
Config string `json:"config"`
|
||||||
CreateTime string `json:"create_time"`
|
CreateTime string `json:"create_time"`
|
||||||
Status int `json:"status"`
|
Status int `json:"status"`
|
||||||
|
UpdateTime string `json:"update_time"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *ReportChannelListResponse) FromDb(in cronreportchannelmodel.CronReportChannel) {
|
func (this *ReportChannelListResponse) FromDb(in cronreportchannelmodel.CronReportChannel) {
|
||||||
|
@ -73,6 +74,7 @@ func (this *ReportChannelListResponse) FromDb(in cronreportchannelmodel.CronRepo
|
||||||
this.Config = in.Config
|
this.Config = in.Config
|
||||||
this.CreateTime = in.CreateTime.Format("2006-01-02 15:04:05")
|
this.CreateTime = in.CreateTime.Format("2006-01-02 15:04:05")
|
||||||
this.Status = in.Status
|
this.Status = in.Status
|
||||||
|
this.UpdateTime = in.UpdateTime.Format("2006-01-02 15:04:05")
|
||||||
}
|
}
|
||||||
|
|
||||||
type ReportChannelCreateRequest struct {
|
type ReportChannelCreateRequest struct {
|
||||||
|
|
|
@ -22,7 +22,7 @@ func ReportChannelList(param backend.ReportChannelList) (list []cronreportchanne
|
||||||
repo = repository.NewReportChannelRepo()
|
repo = repository.NewReportChannelRepo()
|
||||||
opts = make([]repository.DBOption, 0)
|
opts = make([]repository.DBOption, 0)
|
||||||
)
|
)
|
||||||
|
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(uint(param.ReportChannelId)))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue