控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Definitions.php 1.3KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 定义通用注释
  13. // +----------------------------------------------------------------------
  14. namespace addons\apidoc\library;
  15. class Definitions
  16. {
  17. /**
  18. * @title 获取分页数据列表的参数
  19. * @param name:pageIndex type:int require:0 default:0 desc:查询页数
  20. * @param name:pageSize type:int require:0 default:20 desc:查询条数
  21. */
  22. public function pagingParam()
  23. {}
  24. /**
  25. * @title 返回字典数据
  26. * @return name:code type:int default:0 desc:错误码
  27. * @return name:msg type:string desc:提示信息
  28. * @return name:time type:int desc:时间戳
  29. * @return name:data type:string desc:返回的数据
  30. */
  31. public function dictionary()
  32. {}
  33. }