* @Link https://gitee.com/xmo/MineAdmin */ namespace {NAMESPACE}; {USE} use Hyperf\Di\Annotation\Inject; use Hyperf\HttpServer\Annotation\Controller; use Hyperf\HttpServer\Annotation\DeleteMapping; use Hyperf\HttpServer\Annotation\GetMapping; use Hyperf\HttpServer\Annotation\PostMapping; use Hyperf\HttpServer\Annotation\PutMapping; use Builder\Annotation\Auth; use Builder\Annotation\OperationLog; use Builder\Annotation\Permission; use Builder\MineController; use Psr\Http\Message\ResponseInterface; /** * {COMMENT} * Class {CLASS_NAME} */ #[Controller(prefix: "{CONTROLLER_ROUTE}"), Auth] class {CLASS_NAME} extends MineController { /** * 业务处理服务 * {SERVICE} */ #[Inject] protected {SERVICE} $service; {FUNCTIONS} }