EasyVQD/internal/core/vqd/vqdpolling.param.go
2026-03-26 10:23:31 +08:00

44 lines
1.2 KiB
Go

// Code generated by gowebx, DO AVOID EDIT.
package vqd
import (
"git.lnton.com/lnton/pkg/web"
)
type FindVqdPollingInput struct {
web.PagerFilter
Name string `form:"name"` // 名称
}
type EditVqdPollingInput struct {
Name string `json:"name"` // 名称
ChannelID string `json:"channel_id"` // 关联通道
ChannelName string `json:"channel_name"` // 通道名称
TaskTemplateID int `json:"task_template_id"` // 关联模板
}
type AddVqdPollingInput struct {
Name string `json:"name"` // 名称
ChannelID string `json:"channel_id"` // 关联通道
ChannelName string `json:"channel_name"` // 通道名称
TaskTemplateID int `json:"task_template_id"` // 关联模板
}
type AddVqdPollingAllInput struct {
Items []AddVqdPollingInput `json:"items"`
}
type DelVqdPollingInput struct {
IDs []string `json:"ids"`
}
type GetPollingConfOutput struct {
PollingNum int32 `json:"polling_num"`
PollingTime int32 `json:"polling_time"`
PollingTemplate int32 `json:"polling_template"`
}
type EditPollingConfInput struct {
PollingNum int32 `json:"polling_num"`
PollingTime int32 `json:"polling_time"`
PollingTemplate int32 `json:"polling_template"`
}