user.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. $status = array
  3. (
  4. 1 => '未开始',
  5. 2 => '正在答题',
  6. 3 => '中止答题',//也算完成
  7. 4 => '完成答题',
  8. );
  9. return array
  10. (
  11. # 表名
  12. 'name' => 'user',
  13. # 显示给用户看的名称
  14. 'lang' => '用户参与表',
  15. # 是否显示在后台菜单
  16. 'menu' => false,
  17. # 数据结构
  18. 'struct' => array
  19. (
  20. 'id' => array
  21. (
  22. 'type' => 'int-11',
  23. 'name' => 'ID',
  24. 'default' => '',
  25. 'desc' => '',
  26. 'match' => 'is_numeric',
  27. 'order' => 'desc',
  28. 'list' => true,
  29. ),
  30. 'uid' => array
  31. (
  32. 'type' => 'varchar-150',
  33. 'name' => '用户',
  34. 'default' => '',
  35. 'desc' => '用户id',
  36. 'match' => 'is_string',
  37. 'update' => 'text',
  38. 'search' => 'fulltext',
  39. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#name", {uid}) : "匿名用户"',
  40. ),
  41. 'exam_id' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '活动',
  45. 'default' => '1',
  46. 'desc' => '活动id',
  47. 'match' => 'is_numeric',
  48. 'list' => '{exam_id} > 0 ? Dever::load("question/exam-one#name", {exam_id}) : "未知"',
  49. ),
  50. 'info_ids' => array
  51. (
  52. 'type' => 'varchar-300',
  53. 'name' => '题库ID列表',
  54. 'default' => '',
  55. 'desc' => '题库ID列表',
  56. 'match' => 'option',
  57. 'update' => 'textarea',
  58. //'list' => true,
  59. ),
  60. 'score' => array
  61. (
  62. 'type' => 'int-11',
  63. 'name' => '当前得分',
  64. 'default' => '0',
  65. 'desc' => '当前得分',
  66. 'match' => 'option',
  67. 'update' => 'text',
  68. 'list' => true,
  69. ),
  70. 'num' => array
  71. (
  72. 'type' => 'int-11',
  73. 'name' => '题目数量',
  74. 'default' => '0',
  75. 'desc' => '题目数量',
  76. 'match' => 'is_string',
  77. 'update' => 'text',
  78. ),
  79. 'times' => array
  80. (
  81. 'type' => 'int-11',
  82. 'name' => '答题次数',
  83. 'default' => '0',
  84. 'desc' => '答题次数',
  85. 'match' => 'is_string',
  86. 'update' => 'text',
  87. 'list' => true,
  88. ),
  89. /*
  90. 'user_info_ids' => array
  91. (
  92. 'type' => 'varchar-300',
  93. 'name' => '答过的题目id列表',
  94. 'default' => '',
  95. 'desc' => '答过的题目id列表',
  96. 'match' => 'option',
  97. 'update' => 'textarea',
  98. //'list' => true,
  99. ),
  100. */
  101. 'index' => array
  102. (
  103. 'type' => 'int-11',
  104. 'name' => '答题进度',
  105. 'default' => '0',
  106. 'desc' => '答题进度',
  107. 'match' => 'option',
  108. 'update' => 'textarea',
  109. 'list' => true,
  110. ),
  111. 'status' => array
  112. (
  113. 'type' => 'tinyint-1',
  114. 'name' => '答题状态',
  115. 'default' => '1',
  116. 'desc' => '答题状态',
  117. 'match' => 'is_numeric',
  118. //'update' => 'radio',
  119. 'option' => $status,
  120. 'control' => 'type',
  121. 'list' => true,
  122. ),
  123. 'state' => array
  124. (
  125. 'type' => 'tinyint-1',
  126. 'name' => '状态',
  127. 'default' => '1',
  128. 'desc' => '请选择状态',
  129. 'match' => 'is_numeric',
  130. ),
  131. 'cdate' => array
  132. (
  133. 'type' => 'int-11',
  134. 'name' => '更新时间',
  135. 'match' => array('is_numeric', time()),
  136. 'desc' => '',
  137. # 只有insert时才生效
  138. //'insert' => true,
  139. 'search' => 'date',
  140. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  141. ),
  142. ),
  143. 'manage' => array
  144. (
  145. 'insert' => false,
  146. 'edit' => false,
  147. 'delete' => false,
  148. ),
  149. 'request' => array
  150. (
  151. # 获取最新一条的用户信息
  152. 'get' => array
  153. (
  154. # 匹配的正则或函数 选填项
  155. 'where' => array
  156. (
  157. 'uid' => 'yes',
  158. 'state' => 1,
  159. ),
  160. 'type' => 'one',
  161. 'order' => array('times' => 'desc', 'id' => 'desc'),
  162. 'col' => '*',
  163. ),
  164. # 获取已完成记录
  165. 'getFinish' => array
  166. (
  167. # 匹配的正则或函数 选填项
  168. 'where' => array
  169. (
  170. 'status' => array('yes', '>='),
  171. 'exam_id' => 'yes',
  172. 'uid' => 'yes',
  173. 'state' => 1,
  174. ),
  175. 'type' => 'one',
  176. 'order' => array('times' => 'desc', 'id' => 'desc'),
  177. 'col' => 'times,status',
  178. ),
  179. # 获取未完成记录
  180. 'getUnFinish' => array
  181. (
  182. # 匹配的正则或函数 选填项
  183. 'where' => array
  184. (
  185. 'status' => array('yes', '<'),
  186. 'exam_id' => 'yes',
  187. 'uid' => 'yes',
  188. 'state' => 1,
  189. ),
  190. 'type' => 'one',
  191. 'col' => '*',
  192. ),
  193. )
  194. );