...
|
...
|
@@ -19,6 +19,11 @@ const ( |
|
|
LinkNodeViewResult int = 5 // 环节-绩效结果查看
|
|
|
)
|
|
|
|
|
|
const (
|
|
|
NodeRequiredNo int = 1 // 是否必填项-非必填
|
|
|
NodeRequiredYes int = 2 // 是否必填项-必填
|
|
|
)
|
|
|
|
|
|
type EntryItem struct {
|
|
|
Title string `json:"title" comment:"填写标题"`
|
|
|
HintText string `json:"hintText" comment:"文本内容提示"`
|
...
|
...
|
@@ -35,6 +40,7 @@ type NodeContent struct { |
|
|
PromptTitle string `json:"promptTitle" comment:"提示项标题"`
|
|
|
PromptText string `json:"promptText" comment:"提示项正文"`
|
|
|
EntryItems []*EntryItem `json:"entryItems" comment:"填写项"`
|
|
|
Required int `json:"required" comment:"必填项"`
|
|
|
}
|
|
|
|
|
|
// LinkNode 评估流程、环节
|
...
|
...
|
|