This commit is contained in:
suyl
2021-08-18 10:04:26 +08:00
parent 046a098189
commit a1b2eecd30
3 changed files with 101 additions and 2 deletions

View File

@@ -2113,3 +2113,11 @@ func GetActMtwmVendorSku(ctx *jxcontext.Context, storeID int, keyword string, ac
func DeleteActStoreSkuVendor(ctx *jxcontext.Context, db *dao.DaoDB, actStoreSkuParam []*ActStoreSkuParam) (err error) {
return fmt.Errorf("暂不支持直接取消平台活动,开发中……")
}
func GetActEbaiVendor(ctx *jxcontext.Context, storeIDs, skuIDs []int, keyword, beginAt, endAt string, actType, offset, pageSize int) (page *model.PagedInfo, err error) {
return dao.GetActEbaiVendorPage(dao.GetDB(), storeIDs, skuIDs, keyword, utils.Str2Time(beginAt), utils.Str2Time(endAt), actType, offset, pageSize)
}
func GetActEbaiVendorSku(ctx *jxcontext.Context, actID, keyword string, offset, pageSize int) (page *model.PagedInfo, err error) {
return dao.GetActEbaiVendorSkuPage(dao.GetDB(), actID, keyword, offset, pageSize)
}