| 1234567891011121314151617 |
- package common
- type TemplateListParamsResponse struct {
- // 【模板参数名称】模板参数名称
- Name string `json:"name,omitempty"`
- // 【参数类型】参数类型
- Type_ string `json:"type,omitempty"`
- // 【是否必填】是否必填 【回参说明】 true 必填;false 非必填
- Required *bool `json:"required,omitempty"`
- // 【默认值】默认值
- DefaultValue string `json:"defaultValue,omitempty"`
- // 【模板参数Key值】模板参数Key值
- ParamKey string `json:"paramKey,omitempty"`
- // 【参数ID】参数ID
- Id string `json:"id,omitempty"`
- }
|