GAAS GFrame项目web后台
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
790 B

package specifications
import (
"LAPP_GAAS_GFrame_BACKEND/container"
svr "LAPP_GAAS_GFrame_BACKEND/services/base"
)
func init() {
signServiceInfo := container.GlobalInformations.RegisterService(svr.NewSignService, false)
selectOneUserInfo := signServiceInfo.RegisterMethod("SelectOneUser")
selectOneUserInfo.AppendBrokerBuilder(container.ContextOfNoSession)
getWorklinesInfo := signServiceInfo.RegisterMethod("GetWorklines")
getWorklinesInfo.AppendBrokerBuilder(container.ContextOfNoSession)
getWorkplacesOfWorklineInfo := signServiceInfo.RegisterMethod("GetWorkplacesOfWorkline")
getWorkplacesOfWorklineInfo.AppendBrokerBuilder(container.ContextOfNoSession)
signInInfo := signServiceInfo.RegisterMethod("SignIn")
signInInfo.AppendBrokerBuilder(container.ContextOfNoSession)
}