BaseManageRentRepository.php 312 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/3/13
 * Time: 17:28
 */

namespace App\Modules\Repositories\ManageRent;

use App\Modules\Models\Rent\Rent;
use App\Modules\Repositories\BaseRepository;
class BaseManageRentRepository  extends BaseRepository
{
    const MODEL = Rent::class;
}