data.php 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'data',
  6. # 显示给用户看的名称
  7. 'lang' => '队列数据表',
  8. 'menu' => false,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. 'search' => 'order',
  20. //'list' => true,
  21. 'order' => 'desc',
  22. ),
  23. 'value' => array
  24. (
  25. 'type' => 'text-255',
  26. 'name' => '数据',
  27. 'default' => '',
  28. 'desc' => '数据',
  29. 'match' => 'is_string',
  30. //'update' => 'editor',
  31. 'search' => 'fulltext',
  32. //'list' => 'Dever::load("spider/data.value", {id})',
  33. //'modal' => '查看详情',
  34. ),
  35. 'cdate' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '录入时间',
  39. 'match' => array('is_numeric', time()),
  40. 'desc' => '',
  41. # 只有insert时才生效
  42. //'insert' => true,
  43. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  44. ),
  45. ),
  46. );