|
|
@@ -72,6 +72,17 @@ class StoreCouponIssueDao extends BaseDao
|
|
|
->page($page, $limit)->order('id desc')->select()->toArray();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 优惠券数量
|
|
|
+ * @param $where
|
|
|
+ * @return int
|
|
|
+ * @throws \ReflectionException
|
|
|
+ */
|
|
|
+ public function couponCount($where): int
|
|
|
+ {
|
|
|
+ return $this->search($where)->count();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取优惠券列表
|
|
|
* @param int $uid 用户ID
|