DetailModel.php 379 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: king/QQ:995265288
  5. * Date: 2019-07-08
  6. * Time: 10:31
  7. */
  8. namespace app\backend\models\excelRecharge;
  9. use app\common\scopes\UniacidScope;
  10. class DetailModel extends \app\common\models\excelRecharge\DetailModel
  11. {
  12. public static function boot()
  13. {
  14. parent::boot();
  15. self::addGlobalScope(new UniacidScope());
  16. }
  17. }