33 lines
683 B
PHP
33 lines
683 B
PHP
<?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
|
|
{
|
|
|
|
|
|
} |