From 1eb0a2467862aec5d55a0308d7e922bd5a21ce2d Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Mon, 11 Sep 2023 11:35:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0app=E7=89=88=E6=9C=ACres?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../repositories/system/LhappRepository.php | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 app/common/repositories/system/LhappRepository.php diff --git a/app/common/repositories/system/LhappRepository.php b/app/common/repositories/system/LhappRepository.php new file mode 100644 index 00000000..3d23de07 --- /dev/null +++ b/app/common/repositories/system/LhappRepository.php @@ -0,0 +1,43 @@ + +// +---------------------------------------------------------------------- + + +namespace app\common\repositories\system; + + +use app\common\dao\system\AppUpdateDao; +use app\common\repositories\BaseRepository; +use think\db\exception\DbException; +use think\exception\ValidateException; +use think\facade\Cache; + +/** + * Class LhappRepository + * @package app\common\repositories\system + * @author xaboy + * @day 2020-04-24 + * @mixin CacheDao + */ +class LhappRepository extends BaseRepository +{ + + + /** + * CacheRepository constructor. + * @param CacheDao $dao + */ + public function __construct(AppUpdateDao $dao) + { + $this->dao = $dao; + } + +}