广汽安道拓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.
 
 

16 lines
719 B

package specifications
import (
"LAPP_ACURA_MOM_BACKEND/container"
svr "LAPP_ACURA_MOM_BACKEND/services/log"
)
func init() {
packOrderServiceInfo := container.GlobalInformations.RegisterService(svr.NewPackOrderService, false)
closePackOrderInfo := packOrderServiceInfo.RegisterMethod("ClosePackOrder")
closePackOrderInfo.AppendBrokerBuilder(container.ContextOfNewTransaction)
openPackOrderInfo := packOrderServiceInfo.RegisterMethod("OpenPackOrder")
openPackOrderInfo.AppendBrokerBuilder(container.ContextOfNewTransaction)
openPackOrderWithTemplateInfo := packOrderServiceInfo.RegisterMethod("OpenPackOrderWithTemplate")
openPackOrderWithTemplateInfo.AppendBrokerBuilder(container.ContextOfNewTransaction)
}