+ IPurchasePlatformPageActHandler

- 饿百IPurchasePlatformPageActHandler接口OK
This commit is contained in:
gazebo
2019-07-10 14:33:04 +08:00
parent 74e183e891
commit a2226beffa
3 changed files with 148 additions and 0 deletions

View File

@@ -25,6 +25,11 @@ type IPurchasePlatformActHandler interface {
SyncAct(ctx *jxcontext.Context, parentTask tasksch.ITask, act *model.Act2, actOrderRules []*model.ActOrderRule, actStoreSkuList []*model.ActStoreSku2) (err error)
}
type IPurchasePlatformPageActHandler interface {
GetPageActList(ctx *jxcontext.Context, createdFrom time.Time) (actList []*model.Act2, err error)
GetPageActSkuList(ctx *jxcontext.Context, vendorPageActID string) (actStoreSkuList []*model.ActStoreSku2, err error)
}
var (
CurActManager IActManager
)