combine.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. $status = array
  3. (
  4. 1 => '未执行',
  5. 2 => '已执行',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'combine',
  11. # 显示给用户看的名称
  12. 'lang' => '合并管理',
  13. # 后台菜单排序
  14. 'order' => 1,
  15. 'menu' => false,
  16. # 数据结构
  17. 'struct' => array
  18. (
  19. 'id' => array
  20. (
  21. 'type' => 'int-11',
  22. 'name' => 'ID',
  23. 'default' => '',
  24. 'desc' => '',
  25. 'match' => 'is_numeric',
  26. 'search' => 'order',
  27. 'list' => true,
  28. 'order' => 'desc',
  29. ),
  30. 'old_uid' => array
  31. (
  32. 'type' => 'int-11',
  33. 'name' => '旧的uid',
  34. 'default' => '',
  35. 'desc' => '旧的uid',
  36. 'match' => 'is_numeric',
  37. 'update' => 'text',
  38. 'list' => true,
  39. ),
  40. 'new_uid' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '新的uid',
  44. 'default' => '',
  45. 'desc' => '新的uid',
  46. 'match' => 'is_numeric',
  47. 'update' => 'text',
  48. 'list' => true,
  49. ),
  50. 'status' => array
  51. (
  52. 'type' => 'tinyint-1',
  53. 'name' => '合并任务执行状态',
  54. 'default' => '2',
  55. 'desc' => '合并任务执行状态',
  56. 'match' => 'is_numeric',
  57. 'option' => $status,
  58. 'update' => 'radio',
  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. );