user_set.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'user_set',
  6. # 显示给用户看的名称
  7. 'lang' => '客户等级设置',
  8. # 后台菜单排序
  9. 'order' => 4,
  10. // 'menu' => false,
  11. // 'auto' => 100000,
  12. # 数据结构
  13. 'struct' => array
  14. (
  15. 'id' => array
  16. (
  17. 'type' => 'int-11',
  18. 'name' => 'ID',
  19. 'default' => '',
  20. 'desc' => '',
  21. 'match' => 'is_numeric',
  22. 'search' => 'order',
  23. // 'list' => true,
  24. // 'order' => 'desc',
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-200',
  29. 'name' => '等级名称',
  30. 'default' => '',
  31. 'desc' => '等级名称',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. // 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'desc' => array
  38. (
  39. 'type' => 'text-255',
  40. 'name' => '等级说明',
  41. 'default' => '',
  42. 'desc' => '等级说明',
  43. 'match' => 'is_string',
  44. 'update' => 'textarea',
  45. 'list' => true,
  46. ),
  47. 'reorder' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '排序-数值越大越靠前',
  51. 'default' => '1',
  52. 'desc' => '请输入排序',
  53. 'match' => 'option',
  54. 'update' => 'text',
  55. 'search' => 'order',
  56. 'list' => true,
  57. 'order' => 'desc',
  58. 'edit' => true,
  59. ),
  60. 'state' => array
  61. (
  62. 'type' => 'tinyint-1',
  63. 'name' => '状态',
  64. 'default' => '1',
  65. 'desc' => '请选择状态',
  66. 'match' => 'is_numeric',
  67. ),
  68. 'cdate' => array
  69. (
  70. 'type' => 'int-11',
  71. 'name' => '创建时间',
  72. 'match' => array('is_numeric', time()),
  73. 'desc' => '',
  74. # 只有insert时才生效
  75. 'insert' => true,
  76. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  77. ),
  78. ),
  79. 'manage' => array
  80. (
  81. //'insert' => false,
  82. 'delete' => false,
  83. // 'edit' => false,
  84. ),
  85. 'request' => array
  86. (
  87. 'getAll' => array
  88. (
  89. # 匹配的正则或函数 选填项
  90. 'option' => array
  91. (
  92. // 'id' => array('yes','>'),
  93. 'state' => 1,
  94. ),
  95. 'type' => 'all',
  96. 'order' => array('reorder' => 'desc', 'id' => 'asc'),
  97. 'col' => '*',
  98. ),
  99. ),
  100. );