luck-draw/app/repository/ArchivesRepository.php

33 lines
683 B
PHP
Raw Normal View History

2022-02-22 09:27:27 +00:00
<?php
namespace app\repository;
use app\exception\RepositoryException;
use app\model\AccountRecord;
use app\model\Archives;
use app\model\ArchivesCategory;
use app\model\ArchivesModel;
use app\model\Course;
use app\model\Diary;
use app\model\Disease;
use app\model\DoctorRelation;
use Exception;
use think\Model;
use think\Collection;
use app\service\Repository;
use think\db\exception\DbException;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
/**
* 内容 相关
*
* Class ArchivesRepository
* @package app\repository
* @method self getInstance(Model $model = null) static
*/
class ArchivesRepository extends Repository
{
}