member_title.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | admin.php 管理员表
  5. |--------------------------------------------------------------------------
  6. */
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'member_title',
  11. # 显示给用户看的名称
  12. 'lang' => '头衔关联表',
  13. 'menu' => false,
  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. ),
  27. 'mid' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => '代理商',
  31. 'default' => '',
  32. 'desc' => '代理商',
  33. 'match' => 'is_numeric',
  34. 'update' => 'text',
  35. 'list' => true,
  36. ),
  37. 'title_id' => array
  38. (
  39. 'type' => 'int-11',
  40. 'name' => '头衔ID',
  41. 'default' => '',
  42. 'desc' => '头衔ID',
  43. 'match' => 'is_numeric',
  44. 'update' => 'text',
  45. 'list' => true,
  46. ),
  47. 'cdate' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '录入时间',
  51. 'match' => array('is_numeric', DEVER_TIME),
  52. 'desc' => '',
  53. # 只有insert时才生效
  54. 'insert' => true,
  55. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  56. ),
  57. ),
  58. # request 请求接口定义
  59. 'request' => array
  60. (
  61. 'getData' => array
  62. (
  63. # 匹配的正则或函数 选填项
  64. 'option' => array
  65. (
  66. 'title_id' => array('yes', 'in'),
  67. ),
  68. 'order' => array('id' => 'desc'),
  69. 'type' => 'all',
  70. 'col' => 'mid|mid',
  71. ),
  72. )
  73. );