* +---------------------------------------------------------------------- */ namespace App\Http\Dao\Client; use App\Http\Dao\BaseDao; use App\Http\Model\Client\ClientInvoiceLog; use crmeb\traits\dao\ListSearchTrait; class ClientInvoiceLogDao extends BaseDao { use ListSearchTrait; protected function setModel(): string { return ClientInvoiceLog::class; } }