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.

16 lines
723 B

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