record.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'record',
  6. # 显示给用户看的名称
  7. 'lang' => '用户操作记录',
  8. 'menu' => false,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. 'search' => 'order',
  20. 'update' => 'hidden',
  21. //'list' => true,
  22. ),
  23. 'uid' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '用户名',
  27. 'default' => '0',
  28. 'desc' => '请选择用户',
  29. 'match' => 'is_numeric',
  30. 'update' => 'text',
  31. //'search' => 'select',
  32. 'search' => array
  33. (
  34. 'api' => 'passport/user-all',
  35. 'col' => 'username',
  36. 'result' => 'id',
  37. ),
  38. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  39. ),
  40. 'info_id' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '合集',
  44. 'default' => '',
  45. 'desc' => '合集',
  46. 'match' => 'is_numeric',
  47. 'update' => 'text',
  48. ),
  49. 'parent_page_id' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '父级章节id',
  53. 'default' => '',
  54. 'desc' => '章节id',
  55. 'match' => 'is_numeric',
  56. 'update' => 'text',
  57. ),
  58. 'page_id' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => '章节id',
  62. 'default' => '',
  63. 'desc' => '章节id',
  64. 'match' => 'is_numeric',
  65. 'update' => 'text',
  66. ),
  67. 'times_id' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '时光id',
  71. 'default' => '',
  72. 'desc' => '时光id',
  73. 'match' => 'is_numeric',
  74. 'update' => 'text',
  75. ),
  76. 'day' => array
  77. (
  78. 'type' => 'int-11',
  79. 'name' => '时光下的日期',
  80. 'default' => '',
  81. 'desc' => '时光下的日期',
  82. 'match' => 'is_numeric',
  83. 'update' => 'text',
  84. ),
  85. 'content_id' => array
  86. (
  87. 'type' => 'int-11',
  88. 'name' => '内容id',
  89. 'default' => '',
  90. 'desc' => '内容id',
  91. 'match' => 'is_numeric',
  92. 'update' => 'text',
  93. ),
  94. 'index' => array
  95. (
  96. 'type' => 'int-11',
  97. 'name' => '内容索引值',
  98. 'default' => '',
  99. 'desc' => '内容索引值',
  100. 'match' => 'is_numeric',
  101. 'update' => 'text',
  102. ),
  103. 'state' => array
  104. (
  105. 'type' => 'tinyint-1',
  106. 'name' => '状态',
  107. 'default' => '1',
  108. 'desc' => '请选择状态',
  109. 'match' => 'is_numeric',
  110. ),
  111. 'cdate' => array
  112. (
  113. 'type' => 'int-11',
  114. 'name' => '操作时间',
  115. 'match' => array('is_numeric', time()),
  116. 'desc' => '',
  117. # 只有insert时才生效
  118. //'insert' => true,
  119. 'search' => 'date',
  120. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  121. ),
  122. ),
  123. 'manage' => array
  124. (
  125. ),
  126. 'request' => array
  127. (
  128. ),
  129. );