30 lines
652 B
PHP
30 lines
652 B
PHP
<?php
|
|
namespace app\common\repositories\system\merchant;
|
|
|
|
|
|
|
|
use app\common\dao\system\merchant\MerchantShareholderIntegralDao;
|
|
use app\common\repositories\BaseRepository;
|
|
|
|
class MerchantShareholderIntegralRepository extends BaseRepository{
|
|
|
|
public function __construct(MerchantShareholderIntegralDao $dao){
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* Common: 公共查询模型
|
|
* Author: wu-hui
|
|
* Time: 2024/06/19 16:04
|
|
* @param $search
|
|
* @return \app\common\model\system\merchant\MerchantShareholderIntegral
|
|
*/
|
|
public function getSearchModel($search){
|
|
return $this->dao->searchModel($search);
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|