*/ namespace App\Controller; use Hyperf\HttpServer\Annotation\Controller; use Hyperf\HttpServer\Annotation\GetMapping; use App\Model\Uuid as uModel; #[Controller("v1")] class GaoDingController extends AbstractController { #[GetMapping("uuid/get")] public function get() { return $this->success(uModel::add()); } #[GetMapping("uuid/query")] public function query() { return $this->success([]); } }