修复bug

This commit is contained in:
renzhiyuan 2024-12-30 14:28:29 +08:00
parent 561e438c8f
commit 3e7492ab75
1 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,7 @@ type CmdListResponse struct {
ReadDb *crondbmodel.CronDb `json:"read_db"`
WriteDb *crondbmodel.CronDb `json:"write_db"`
ReportChannel *cronreportchannelmodel.CronReportChannel `json:"report_channel"`
IsDynamicUsers int `json:"is_dynamic_users"`
}
type CmdAddRequest struct {
@ -60,6 +61,7 @@ type CmdAddRequest struct {
SendTimeType int `json:"send_time_type"`
SendLimit int `json:"send_limit"`
ReportChannelId int `json:"report_channel_id"`
IsDynamicUsers int `json:"is_dynamic_users"`
}
type CmdEditRequest struct {
@ -76,6 +78,7 @@ type CmdEditRequest struct {
SendTimeType int `json:"send_time_type"`
SendLimit int `json:"send_limit"`
ReportChannelId int `json:"report_channel_id"`
IsDynamicUsers int `json:"is_dynamic_users"`
}
type CmdDeleteRequest struct {
@ -105,6 +108,7 @@ type CmdStopRequest struct {
func (response *CmdListResponse) ResponseFromDb(l croncmdmodel.CronCmd) {
response.CmdId = l.CmdId
response.CmdId = l.IsDynamicUsers
response.CmdName = l.CmdName
response.UserIds = l.UserIds
response.EntryId = l.EntryId