26 lines
467 B
PHP
26 lines
467 B
PHP
<?php
|
|
|
|
namespace app\common\controller;
|
|
|
|
|
|
class Definitions
|
|
{
|
|
|
|
// #[
|
|
// ApiDoc\Header(name: "token", type: "string", require: true, desc: "token"),
|
|
// ]
|
|
public function token()
|
|
{
|
|
}
|
|
|
|
// #[
|
|
// ApiDoc\Query("page_no", type: "int", require: false, default: 1, desc: "页码"),
|
|
// ApiDoc\Query("page_size", type: "int", require: false, default: 25, desc: "每页条数"),
|
|
// ]
|
|
public function page()
|
|
{
|
|
|
|
}
|
|
|
|
}
|