You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
720 B
25 lines
720 B
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
|
|
}
|
|
|