HR管理系统
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.

18 lines
316 B

package workrostering
import (
"hr_server/overall/overallhandle"
"github.com/gin-gonic/gin"
)
// 排班管理API
type ApiModer struct{}
// 入口
func (s *ApiModer) Index(c *gin.Context) {
outputCont := overallhandle.MapOut()
outputCont["index"] = "排班管理API"
overallhandle.Result(0, outputCont, c)
}