order_cash.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. $type = array
  3. (
  4. 1 => '直推佣金',
  5. 2 => '团队分润',
  6. 3 => '间推佣金',
  7. );
  8. return array
  9. (
  10. # 表名
  11. 'name' => 'order_cash',
  12. # 显示给用户看的名称
  13. 'lang' => '分润信息',
  14. 'menu' => false,
  15. # 数据结构
  16. 'struct' => array
  17. (
  18. 'id' => array
  19. (
  20. 'type' => 'int-11',
  21. 'name' => 'ID',
  22. 'default' => '',
  23. 'desc' => '',
  24. 'match' => 'is_numeric',
  25. 'search' => 'order',
  26. 'update' => 'hidden',
  27. //'list' => true,
  28. ),
  29. 'order_id' => array
  30. (
  31. 'type' => 'int-11',
  32. 'name' => '订单表id',
  33. 'default' => '',
  34. 'desc' => '订单表id',
  35. 'match' => 'is_numeric',
  36. ),
  37. 'type' => array
  38. (
  39. 'type' => 'tinyint-1',
  40. 'name' => '类型',
  41. 'default' => '1',
  42. 'desc' => '类型',
  43. 'match' => 'is_numeric',
  44. 'update' => 'radio',
  45. 'option' => $type,
  46. ),
  47. 'mid' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '代理商',
  51. 'default' => '-1',
  52. 'desc' => '代理商',
  53. 'match' => 'is_string',
  54. 'update' => 'text',
  55. ),
  56. 'parent_mid' => array
  57. (
  58. 'type' => 'int-11',
  59. 'name' => '上级代理商',
  60. 'default' => '-1',
  61. 'desc' => '代理商',
  62. 'match' => 'is_string',
  63. 'update' => 'text',
  64. ),
  65. 'per' => array
  66. (
  67. 'type' => 'int-11',
  68. 'name' => '佣金比例-仅做展示用',
  69. 'default' => '0',
  70. 'desc' => '佣金比例',
  71. 'match' => 'option',
  72. 'update' => 'text',
  73. 'list' => true,
  74. ),
  75. 'cash' => array
  76. (
  77. 'type' => 'decimal-11,2',
  78. 'name' => '金额',
  79. 'default' => '0',
  80. 'desc' => '金额',
  81. 'match' => 'option',
  82. 'update' => 'text',
  83. 'list' => true,
  84. ),
  85. 'prize_id' => array
  86. (
  87. 'type' => 'int-11',
  88. 'name' => '奖励的名额',
  89. 'default' => '-1',
  90. 'desc' => '奖励的名额',
  91. 'match' => 'is_numeric',
  92. ),
  93. 'goods' => array
  94. (
  95. 'type' => 'text-255',
  96. 'name' => '奖励的权益',
  97. 'default' => '',
  98. 'desc' => '奖励的权益',
  99. 'match' => 'is_string',
  100. ),
  101. 'state' => array
  102. (
  103. 'type' => 'tinyint-1',
  104. 'name' => '状态',
  105. 'default' => '1',
  106. 'desc' => '请选择状态',
  107. 'match' => 'is_numeric',
  108. ),
  109. 'cdate' => array
  110. (
  111. 'type' => 'int-11',
  112. 'name' => '创建时间',
  113. 'match' => array('is_numeric', time()),
  114. 'desc' => '',
  115. # 只有insert时才生效
  116. //'insert' => true,
  117. 'search' => 'date',
  118. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  119. ),
  120. ),
  121. 'alter' => array
  122. (
  123. 10 => array
  124. (
  125. array('update', 'cash', 'cash', 'decimal-11,2 0 金额'),
  126. ),
  127. 'version' => 10,
  128. ),
  129. 'manage' => array
  130. (
  131. ),
  132. 'request' => array
  133. (
  134. 'getData' => array
  135. (
  136. # 匹配的正则或函数 选填项
  137. 'option' => array
  138. (
  139. 'order_id' => 'yes',
  140. 'parent_mid' => 'yes',
  141. 'mid' => 'yes',
  142. 'type' => 'yes',
  143. 'state' => 1,
  144. ),
  145. 'type' => 'one',
  146. 'col' => '*',
  147. ),
  148. 'getAll' => array
  149. (
  150. # 匹配的正则或函数 选填项
  151. 'option' => array
  152. (
  153. 'order_id' => 'yes',
  154. 'parent_mid' => 'yes',
  155. 'mid' => 'yes',
  156. 'type' => 'yes',
  157. 'state' => 1,
  158. ),
  159. 'type' => 'all',
  160. 'col' => '*',
  161. ),
  162. ),
  163. );