package common // 【拟定动作】拟定动作 type CategoryFillActionResponse struct { // 【拟定动作类型】拟定动作类型 FILL(个人拟定),AUDIT(审批),COUNTERSIGN(\"会签签章\") Type_ string `json:"type"` // 【会签动作】会签动作 Childs []*CategoryFillActionResponse `json:"childs,omitempty"` // 【拟定动作名称】 Name string `json:"name"` // 【拟定顺序】拟定顺序 SerialNo *int64 `json:"serialNo"` // 【拟定人】拟定人 ActionOperators []*UserResponse `json:"actionOperators"` }