seat.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'seat',
  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' => '-1',
  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. 'hall' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '大厅数值',
  107. 'default' => '',
  108. 'desc' => '大厅数值',
  109. 'match' => 'is_numeric',
  110. 'update' => 'text',
  111. ),
  112. 'seat_row' => array
  113. (
  114. 'type' => 'int-11',
  115. 'name' => '座位所属行',
  116. 'default' => '',
  117. 'desc' => '座位所属行',
  118. 'match' => 'is_numeric',
  119. 'update' => 'text',
  120. ),
  121. 'seat_column' => array
  122. (
  123. 'type' => 'int-11',
  124. 'name' => '座位所属列',
  125. 'default' => '',
  126. 'desc' => '座位所属列',
  127. 'match' => 'is_numeric',
  128. 'update' => 'text',
  129. ),
  130. 'state' => array
  131. (
  132. 'type' => 'tinyint-1',
  133. 'name' => '状态',
  134. 'default' => '1',
  135. 'desc' => '请选择状态',
  136. 'match' => 'is_numeric',
  137. ),
  138. 'cdate' => array
  139. (
  140. 'type' => 'int-11',
  141. 'name' => '操作时间',
  142. 'match' => array('is_numeric', time()),
  143. 'desc' => '',
  144. # 只有insert时才生效
  145. //'insert' => true,
  146. 'search' => 'date',
  147. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  148. ),
  149. ),
  150. 'manage' => array
  151. (
  152. ),
  153. 'request' => array
  154. (
  155. 'getMyData' => array
  156. (
  157. # 匹配的正则或函数 选填项
  158. 'option' => array
  159. (
  160. 'uid' => 'yes',
  161. 'info_id' => 'yes',
  162. 'times_id' => 'yes',
  163. 'content_id' => 'yes',
  164. 'hall' => 'yes',
  165. 'seat_row' => 'yes',
  166. 'seat_column' => 'yes',
  167. 'day' => 'yes',
  168. 'state' => 1,
  169. ),
  170. 'type' => 'all',
  171. 'order' => array('id' => 'desc'),
  172. 'col' => '*',
  173. ),
  174. ),
  175. );