@@ -0,0 +1,15 @@
+<?php
+
+namespace Yxy\Service\promote;
+interface PromoteAuthRuleServiceInterface
+{
+ /**
+ * cps渠道权限检测
+ * @param string $name 权限名称
+ * @param int $promote_id 渠道id
+ * @return bool
+ */
+ public function check(string $name, int $promote_id): bool;
+}