user_answer.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'user_answer',
  6. # 显示给用户看的名称
  7. 'lang' => '用户答题记录',
  8. # 是否显示在后台菜单
  9. 'menu' => false,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. 'order' => 'desc',
  21. 'list' => true,
  22. ),
  23. 'uid' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '用户',
  27. 'default' => '',
  28. 'desc' => '用户',
  29. 'match' => 'is_numeric',
  30. 'list' => true,
  31. ),
  32. 'info_id' => array
  33. (
  34. 'type' => 'int-11',
  35. 'name' => '问卷标题',
  36. 'default' => '',
  37. 'desc' => '问卷标题',
  38. 'match' => 'is_numeric',
  39. 'list' => true,
  40. ),
  41. 'product_id' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '产品',
  45. 'default' => '',
  46. 'desc' => '产品',
  47. 'match' => 'is_numeric',
  48. 'update' => 'text',
  49. ),
  50. 'order_id' => array
  51. (
  52. 'type' => 'int-11',
  53. 'name' => '订单',
  54. 'default' => '',
  55. 'desc' => '订单',
  56. 'match' => 'is_numeric',
  57. 'update' => 'text',
  58. ),
  59. 'score' => array
  60. (
  61. 'type' => 'int-11',
  62. 'name' => '本题得分',
  63. 'default' => '0',
  64. 'desc' => '本题得分',
  65. 'match' => 'is_numeric',
  66. 'update' => 'text',
  67. 'list' => true,
  68. ),
  69. 'value' => array
  70. (
  71. 'type' => 'text-255',
  72. 'name' => '内容',
  73. 'default' => '',
  74. 'desc' => '内容',
  75. 'match' => 'is_string',
  76. 'update' => 'text',
  77. 'list' => true,
  78. ),
  79. 'state' => array
  80. (
  81. 'type' => 'tinyint-1',
  82. 'name' => '状态',
  83. 'default' => '1',
  84. 'desc' => '请选择状态',
  85. 'match' => 'is_numeric',
  86. ),
  87. 'cdate' => array
  88. (
  89. 'type' => 'int-11',
  90. 'name' => '录入时间',
  91. 'match' => array('is_numeric', time()),
  92. 'desc' => '',
  93. # 只有insert时才生效
  94. 'insert' => true,
  95. 'search' => 'date',
  96. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  97. ),
  98. ),
  99. 'manage' => array
  100. (
  101. ),
  102. 'request' => array
  103. (
  104. 'getAll' => array
  105. (
  106. # 匹配的正则或函数 选填项
  107. 'option' => array
  108. (
  109. 'uid' => 'yes',
  110. 'info_id' => 'yes',
  111. 'user_id' => 'yes',
  112. 'state' => 1,
  113. ),
  114. 'type' => 'all',
  115. 'col' => 'info_id,uid,user_id,id|info_id',
  116. ),
  117. 'getNew' => array
  118. (
  119. # 匹配的正则或函数 选填项
  120. 'option' => array
  121. (
  122. 'uid' => 'yes',
  123. 'state' => 1,
  124. ),
  125. 'type' => 'all',
  126. 'col' => 'info_id,uid,user_id,id|info_id',
  127. ),
  128. 'getOldOne' => array
  129. (
  130. # 匹配的正则或函数 选填项
  131. 'option' => array
  132. (
  133. 'product_id' => 'yes',
  134. 'uid' => 'yes',
  135. 'order_id' => 'yes',
  136. 'state' => 1,
  137. ),
  138. 'type' => 'one',
  139. 'order' => array('id' => 'desc'),
  140. 'col' => '*',
  141. ),
  142. 'getNewOne' => array
  143. (
  144. # 匹配的正则或函数 选填项
  145. 'option' => array
  146. (
  147. 'product_id' => 'yes',
  148. 'uid' => 'yes',
  149. 'order_id' => 'yes',
  150. 'state' => 1,
  151. ),
  152. 'type' => 'one',
  153. 'order' => array('id' => 'desc'),
  154. 'col' => '*',
  155. ),
  156. 'getData' => array
  157. (
  158. # 匹配的正则或函数 选填项
  159. 'option' => array
  160. (
  161. 'product_id' => 'yes',
  162. 'uid' => 'yes',
  163. 'order_id' => 'yes',
  164. 'state' => 1,
  165. ),
  166. 'type' => 'all',
  167. 'order' => array('info_id' => 'desc'),
  168. 'col' => '*|info_id',
  169. ),
  170. )
  171. );