Files
huangjingfen/pro_v3.5.1/app/dao/other/AgreementDao.php

29 lines
485 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\dao\other;
use app\dao\BaseDao;
use app\model\other\Agreement;
/**
* Class AgreementDao
* @package app\dao\other
*/
class AgreementDao extends BaseDao
{
/**
* @return string
*/
public function setModel(): string
{
return Agreement::class;
}
}