From 20c8b9d844c037b4480b2de712715ac6d4c86365 Mon Sep 17 00:00:00 2001 From: "home.fengxinyhyl" Date: Tue, 23 Jul 2024 21:54:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8F=90=E7=8E=B0=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/repositories/system/CacheRepository.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/common/repositories/system/CacheRepository.php b/app/common/repositories/system/CacheRepository.php index 167afb4..076de7e 100755 --- a/app/common/repositories/system/CacheRepository.php +++ b/app/common/repositories/system/CacheRepository.php @@ -70,6 +70,8 @@ class CacheRepository extends BaseRepository const LOTTERY_RULE = 'the_lottery_rule'; //抽奖规则 const LOTTERY_RULE2 = 'the_lottery_rule2'; + //提现规则 + const WITHDRAW_RULE = 'the_withdraw_rule'; public function getAgreeList($type) { @@ -80,6 +82,7 @@ class CacheRepository extends BaseRepository ['label' => '注销重要提示', 'key' => self::CANCELLATION_PROMPT], ['label' => '抽奖规则', 'key' => self::LOTTERY_RULE2], ['label' => '预存注意事项', 'key' => self::LOTTERY_RULE], + ['label' => '提现说明', 'key' => self::WITHDRAW_RULE], ]; if (!$type) { // $data[] = ['label' => '注销声明', 'key' => self::CANCELLATION_MSG]; @@ -112,6 +115,7 @@ class CacheRepository extends BaseRepository self::SYS_SVIP, self::LOTTERY_RULE, self::LOTTERY_RULE2, + self::WITHDRAW_RULE, ]; }