广汽安道拓Acura项目MES后台
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
786 B

package specifications
import (
"LAPP_ACURA_MOM_BACKEND/container"
svr "LAPP_ACURA_MOM_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)
}