aozhiwei 79a8a1d676 1
2024-07-27 09:18:35 +08:00

22 lines
353 B
Go

package task
import (
"mt"
"jccommon"
)
type recharge struct {
}
func (this* recharge) init() {
mt.Table.Contract.Traverse(func (ele *mt.Contract) bool {
if ele.GetName() == jccommon.CONTRACT_NAME_GameItemMall {
//go this.processLockAndUnLockEvent(ele.GetNetId(), ele.GetAddress())
}
return true
})
}
func (this* recharge) unInit() {
}