...
|
...
|
@@ -455,13 +455,13 @@ type ChanceDetail struct { |
|
|
|
|
|
//模板
|
|
|
type Template struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Name string `json:"name"`
|
|
|
Doc string `json:"doc"`
|
|
|
Icon string `json:"icon"`
|
|
|
FormList []*Form `json:"formList"`
|
|
|
Question []*CheckQuestion `json:"question"`
|
|
|
Link string `json:"link"` //示例
|
|
|
Id int64 `json:"id"`
|
|
|
Name string `json:"name"`
|
|
|
Doc string `json:"doc"`
|
|
|
Icon string `json:"icon"`
|
|
|
FormList []*Form `json:"formList"`
|
|
|
Questions []*CheckQuestion `json:"questions"`
|
|
|
Link string `json:"link"` //示例
|
|
|
}
|
|
|
|
|
|
//表单
|
...
|
...
|
|