port.php 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'port',
  6. # 显示给用户看的名称
  7. 'lang' => '端口管理',
  8. 'menu' => false,
  9. # 后台菜单排序
  10. 'order' => 10,
  11. # 数据结构
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. 'search' => 'order',
  22. 'order' => 'desc',
  23. 'list' => true,
  24. ),
  25. 'num' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '当前端口数',
  29. 'default' => '',
  30. 'desc' => '当前端口数',
  31. 'match' => 'is_string',
  32. 'update' => 'text',
  33. 'search' => 'fulltext',
  34. 'list' => true,
  35. ),
  36. 'cdate' => array
  37. (
  38. 'type' => 'int-11',
  39. 'name' => '录入时间',
  40. 'match' => array('is_numeric', time()),
  41. 'desc' => '',
  42. # 只有insert时才生效
  43. 'insert' => true,
  44. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  45. ),
  46. ),
  47. # request 请求接口定义
  48. 'request' => array
  49. (
  50. ),
  51. );