code.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'code',
  6. # 显示给用户看的名称
  7. 'lang' => '用户邀请码',
  8. # 是否显示在后台菜单
  9. 'order' => 10,
  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. //'list' => true,
  22. ),
  23. 'uid' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '用户',
  27. 'default' => '',
  28. 'desc' => '用户ID',
  29. 'match' => 'is_numeric',
  30. 'list' => true,
  31. ),
  32. 'value' => array
  33. (
  34. 'type' => 'varchar-50',
  35. 'name' => '邀请码',
  36. 'default' => '',
  37. 'desc' => '邀请码',
  38. 'match' => 'is_string',
  39. 'update' => 'text',
  40. 'search' => 'fulltext',
  41. 'list' => true,
  42. ),
  43. 'cdate' => array
  44. (
  45. 'type' => 'int-11',
  46. 'name' => '录入时间',
  47. 'match' => array('is_numeric', time()),
  48. 'desc' => '',
  49. # 只有insert时才生效
  50. 'insert' => true,
  51. 'search' => 'date',
  52. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  53. ),
  54. ),
  55. 'index' => array
  56. (
  57. 1 => array
  58. (
  59. 'uid' => 'uid',
  60. 'value' => 'value',
  61. ),
  62. # 版本号 更改版本号会更新当前表的索引
  63. 'version' => 1,
  64. ),
  65. 'manage' => array
  66. (
  67. 'delete' => false,
  68. 'edit' => false,
  69. 'insert' => false,
  70. ),
  71. 'request' => array
  72. (
  73. )
  74. );