Income.php 458 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. *
  5. * User: king/QQ:995265288
  6. * Date: 2018/7/20 下午4:16
  7. * Email: livsyitian@163.com
  8. */
  9. namespace app\frontend\models;
  10. use app\common\scopes\MemberIdScope;
  11. use app\common\scopes\UniacidScope;
  12. class Income extends \app\common\models\Income
  13. {
  14. public static function boot()
  15. {
  16. parent::boot();
  17. self::addGlobalScope( new UniacidScope);
  18. self::addGlobalScope( new MemberIdScope);
  19. }
  20. }