Income.php 354 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/3/31
  6. * Time: 下午3:05
  7. */
  8. namespace app\backend\modules\finance\models;
  9. class Income extends \app\common\models\Income
  10. {
  11. public static function getIncomeList($search = [])
  12. {
  13. $Model = static::getIncomes();
  14. return $Model;
  15. }
  16. }