审查视图

pkg/application/summary_evaluation/adapter/menu_list.go 362 字节
tangxvhui authored
1 2
package adapter
tangxvhui authored
3
type MenuListAdapter struct {
tangxvhui authored
4 5 6 7 8 9
	CycleId      int               `json:"cycleId,string"`
	NodeName     string            `json:"nodeName"`
	StatusName   string            `json:"statusName"`
	TargetUserId int               `json:"targetUserId,string"`
	Types        string            `json:"types"`
	Child        []MenuListAdapter `json:"child"`
tangxvhui authored
10
}