package flowchart import ( "key_performance_indicators/overall/publicmethod" "github.com/gin-gonic/gin" ) // 工作流入口 type ApiMethod struct{} // 系统授权配置 func (a *ApiMethod) Index(c *gin.Context) { outputCont := publicmethod.MapOut[string]() outputCont["index"] = "工作流入口" publicmethod.Result(0, outputCont, c) } // 审批工作流全图 type ReviewFlow struct { publicmethod.PublicId //考核项目ID IsCorrection int `json:"iscorrection"` //是否整改 1:不整改;2:整改 PlusReduction int `json:"plusreduction"` //加减分 1:减少;2:增加; PeopleList []string `json:"peopleList"` //被测评的人userKey }