27 lines
505 B
PHP
27 lines
505 B
PHP
<?php
|
|
|
|
namespace app\common\repositories\store;
|
|
|
|
use app\common\dao\store\GuaranteeValueDao;
|
|
use app\common\repositories\BaseRepository;
|
|
use FormBuilder\Factory\Elm;
|
|
use think\facade\Route;
|
|
|
|
class GuaranteeValueRepository extends BaseRepository
|
|
{
|
|
/**
|
|
* @var GuaranteeValueDao
|
|
*/
|
|
protected $dao;
|
|
|
|
|
|
/**
|
|
* GuaranteeRepository constructor.
|
|
* @param GuaranteeValueDao $dao
|
|
*/
|
|
public function __construct(GuaranteeValueDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
}
|