初始化代码

This commit is contained in:
2025-12-22 14:33:31 +08:00
parent d02b31a8b9
commit c2c5ae2fdd
2313 changed files with 467239 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
// +----------------------------------------------------------------------
// | Longbing [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright Chengdu longbing Technology Co., Ltd.
// +----------------------------------------------------------------------
// | Website http://longbing.org/
// +----------------------------------------------------------------------
// | Sales manager: +86-13558882532 / +86-13330887474
// | Technical support: +86-15680635005
// | After-sale service: +86-17361005938
// +----------------------------------------------------------------------
declare(strict_types=1);
namespace longbingcore\diy;
use app\BaseControllerV2;
use think\Request;
/**
* @author shuixian
* @DataTime: 2019/12/11 17:04
* Class BaseSubscribe
* @package longbingcore\diy
*/
class BaseSubscribe extends BaseControllerV2
{
public function __construct(Request $request)
{
parent::__construct($request);
}
}