美文网首页
注释引用

注释引用

作者: 評常訫 | 来源:发表于2021-07-23 10:54 被阅读0次

    使用的是ThinkPHP-ApiDoc 注释插件 

    网址:https://hgthecode.github.io/thinkphp-apidoc/guide/install/


    /* 注释引用 start */

    use hg\apidoc\annotation\Group;

    use hg\apidoc\annotation\Title;

    use hg\apidoc\annotation\Author;

    use hg\apidoc\annotation\Url;

    use hg\apidoc\annotation\Method;

    use hg\apidoc\annotation\Param;

    use hg\apidoc\annotation\Returned;

    /* 注释引用 end */


    插件模板

    /**

        * @Title("基础的注释方法")

        * @Desc("最基础的接口注释写法")

        * @Method("GET")

        * @Tag("测试 基础")

        * @Param("username", type="abc",require=true, desc="用户名" )

        * @Param("password", type="string",require=true, desc="密码" )

        * @Param("phone", type="string",require=true, desc="手机号" )

        * @Param("sex", type="int",default="1",desc="性别" )

        * @Returned("data", type="array", desc="返回数据",

        *    @Returned("id", type="int", desc="id"),

        * )

        */

    相关文章

      网友评论

          本文标题:注释引用

          本文链接:https://www.haomeiwen.com/subject/pilymltx.html