This commit is contained in:
苏尹岚
2021-01-08 18:09:01 +08:00
parent 9f73470bc2
commit b161e4d55a
3 changed files with 25 additions and 0 deletions

View File

@@ -2148,3 +2148,11 @@ func GetMyPriceDefendOrders(ctx *jxcontext.Context, fromTime, toTime string) (pr
priceDefendOrders, err = dao.GetPriceDefendOrder(db, "", nil, nil, nil, 0, -1, -1, -1, userID, utils.Str2Time(fromTime), utils.Str2Time(toTime), true)
return priceDefendOrders, err
}
func GetCoupons(ctx *jxcontext.Context, couponType int, keyword string) (coupons []*model.Coupons, err error) {
// var (
// db = dao.GetDB()
// )
// coupons, err = dao.GetCoupons(db, couponType, keyword)
return coupons, err
}