user.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'user',
  6. # 显示给用户看的名称
  7. 'lang' => '用户拥有的券记录表',
  8. # 后台菜单排序
  9. 'order' => 1,
  10. 'menu' => false,
  11. # 数据结构
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. 'search' => 'order',
  22. 'list' => true,
  23. 'order' => 'desc',
  24. ),
  25. 'uid' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '用户ID',
  29. 'default' => '',
  30. 'desc' => '用户ID',
  31. 'match' => 'is_numeric',
  32. 'update' => 'text',
  33. 'search' => 'fulltext',
  34. 'list' => true,
  35. ),
  36. 'info_id' => array
  37. (
  38. 'type' => 'int-11',
  39. 'name' => '券id',
  40. 'default' => '',
  41. 'desc' => '券id',
  42. 'match' => 'is_numeric',
  43. 'update' => 'text',
  44. 'search' => 'fulltext',
  45. 'list' => true,
  46. ),
  47. 'state' => array
  48. (
  49. 'type' => 'tinyint-1',
  50. 'name' => '状态',
  51. 'default' => '1',
  52. 'desc' => '请选择状态',
  53. 'match' => 'is_numeric',
  54. ),
  55. 'cdate' => array
  56. (
  57. 'type' => 'int-11',
  58. 'name' => '录入时间',
  59. 'match' => array('is_numeric', time()),
  60. 'desc' => '',
  61. # 只有insert时才生效
  62. 'insert' => true,
  63. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  64. ),
  65. ),
  66. 'manage' => array
  67. (
  68. ),
  69. 'request' => array
  70. (
  71. ),
  72. );