26 lines
536 B
Go
26 lines
536 B
Go
// Code generated by gowebx, DO AVOID EDIT.
|
|
package vqd
|
|
|
|
import (
|
|
"git.lnton.com/lnton/pkg/web"
|
|
)
|
|
|
|
type FindVqdTimeTemplateInput struct {
|
|
web.PagerFilter
|
|
Name string `form:"name"` // 名称
|
|
}
|
|
|
|
type EditVqdTimeTemplateInput struct {
|
|
Name string `json:"name"`
|
|
Plans string `json:"plans"`
|
|
Enable bool `json:"enable"`
|
|
Des string ` json:"des"` // 描述
|
|
}
|
|
|
|
type AddVqdTimeTemplateInput struct {
|
|
Name string `json:"name"`
|
|
Plans string `json:"plans"`
|
|
Enable bool `json:"enable"`
|
|
Des string ` json:"des"` // 描述
|
|
}
|