php-rpc-doc/test/Api.php
2018-06-06 13:41:31 +08:00

38 lines
909 B
PHP

<?php
/**
* ==================================================================
* 文 件 名: Api.php
* 概 要:
* 作 者: IT小强
* 创建时间: 2018/6/5 9:43
* 修改时间:
* copyright (c) 2016 - 2018 mail@xqitw.cn
* ==================================================================
*/
/**
* @title 测试用的API类
* Class Api
*/
class Api
{
/**
* @title 添加操作
* @url https://wwww.baidu.com
* @method POST
* @param array|string|bool id 用户ID null 必须
* @param array|string|bool id2 用户ID2 false 非必须
* @code 1 成功
* @code 2 失败
* @return int code 状态码(具体参见状态码说明)
* @return string msg 提示信息
* @return object data 返回的数据
*/
public function add() {
}
public function edit() {
}
}