MallService.php 375 B

12345678910111213141516171819202122
  1. <?php
  2. namespace services\common;
  3. use common\models\mall\Mall;
  4. use common\components\Service;
  5. class MallService extends Service
  6. {
  7. /**
  8. * 是否开启合规模式
  9. *
  10. * @return bool
  11. */
  12. public function isOpenComplianceMode($mall_id)
  13. {
  14. $mall = Mall::getOne([['id' => $mall_id]], true);
  15. return $mall['is_compliance'] ?? 0;
  16. }
  17. }