control_log.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'control_log',
  6. # 显示给用户看的名称
  7. 'lang' => '控制器日志',
  8. 'menu' => false,
  9. 'order' => 20,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. //'search' => 'order',
  21. //'list' => true,
  22. ),
  23. /*
  24. 'id' => array
  25. (
  26. 'type' => 'varchar-50',
  27. 'name' => 'ID',
  28. 'default' => '',
  29. 'desc' => '',
  30. 'match' => 'is_string',
  31. 'search' => 'order',
  32. 'list' => true,
  33. ),
  34. */
  35. 'product_id' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '成品设备',
  39. 'default' => '',
  40. 'desc' => '请输入设备ID',
  41. 'match' => 'is_numeric',
  42. 'update' => 'text',
  43. ),
  44. 'device_id' => array
  45. (
  46. 'type' => 'int-11',
  47. 'name' => '基础设备',
  48. 'default' => '',
  49. 'desc' => '请输入基础设备',
  50. 'match' => 'is_numeric',
  51. 'update' => 'text',
  52. ),
  53. 'control_id' => array
  54. (
  55. 'type' => 'int-11',
  56. 'name' => '控制器',
  57. 'default' => '',
  58. 'desc' => '控制器',
  59. 'match' => 'is_numeric',
  60. 'update' => 'text',
  61. //'list' => 'Dever::load("device/sensor-one#name", {sensor_id})',
  62. ),
  63. 'content' => array
  64. (
  65. 'type' => 'text-255',
  66. 'name' => '记录内容',
  67. 'default' => '',
  68. 'desc' => '请输入名称',
  69. 'match' => 'is_string',
  70. 'update' => 'textarea',
  71. 'search' => 'fulltext',
  72. 'list' => true,
  73. //'modal' => '查看详情',
  74. ),
  75. 'cdate' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '入库时间',
  79. 'match' => array('is_numeric', time()),
  80. 'desc' => '',
  81. # 只有insert时才生效
  82. 'insert' => true,
  83. 'search' => 'order',
  84. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  85. ),
  86. ),
  87. 'manage' => array
  88. (
  89. 'insert' => false,
  90. 'edit' => false,
  91. ),
  92. # request 请求接口定义
  93. 'request' => array
  94. (
  95. ),
  96. );