data.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. $server = function()
  3. {
  4. return Dever::db('mqtt/server')->state();
  5. };
  6. return array
  7. (
  8. # 表名
  9. 'name' => 'data',
  10. # 显示给用户看的名称
  11. 'lang' => '消息列表',
  12. # 后台菜单排序
  13. 'order' => 1,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'search' => 'order',
  25. //'list' => true,
  26. 'order' => 'desc',
  27. ),
  28. 'server_id' => array
  29. (
  30. 'type' => 'int-11',
  31. 'name' => '服务器',
  32. 'default' => '',
  33. 'desc' => '服务器',
  34. 'match' => 'is_numeric',
  35. 'update' => 'radio',
  36. 'option' => $server,
  37. 'list' => true,
  38. ),
  39. 'topic' => array
  40. (
  41. 'type' => 'varchar-100',
  42. 'name' => 'key',
  43. 'default' => '',
  44. 'desc' => 'key',
  45. 'match' => 'is_string',
  46. 'update' => 'text',
  47. 'search' => 'fulltext',
  48. 'list' => true,
  49. ),
  50. 'msg' => array
  51. (
  52. 'type' => 'text-255',
  53. 'name' => 'msg',
  54. 'default' => '',
  55. 'desc' => 'msg',
  56. 'match' => 'is_string',
  57. 'update' => 'text',
  58. 'search' => 'fulltext',
  59. 'list' => true,
  60. ),
  61. 'state' => array
  62. (
  63. 'type' => 'tinyint-1',
  64. 'name' => '状态',
  65. 'default' => '1',
  66. 'desc' => '请选择状态',
  67. 'match' => 'is_numeric',
  68. ),
  69. 'cdate' => array
  70. (
  71. 'type' => 'int-11',
  72. 'name' => '录入时间',
  73. 'match' => array('is_numeric', time()),
  74. 'desc' => '',
  75. # 只有insert时才生效
  76. 'insert' => true,
  77. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  78. ),
  79. ),
  80. 'request' => array
  81. (
  82. 'delete' => false,
  83. 'edit' => false,
  84. 'insert' => false,
  85. ),
  86. );