yspay.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?php
  2. $type = array
  3. (
  4. 1 => '无资金管理功能',
  5. 2 => '有资金管理功能',
  6. );
  7. $cash_type = array
  8. (
  9. 1 => '通过交易金额分账',
  10. 2 => '通过实际金额分账',
  11. );
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'yspay',
  16. # 显示给用户看的名称
  17. 'lang' => '银商扩展配置',
  18. 'order' => 10,
  19. 'menu' => false,
  20. # 数据结构
  21. 'struct' => array
  22. (
  23. 'id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => 'ID',
  27. 'default' => '',
  28. 'desc' => '',
  29. 'match' => 'is_numeric',
  30. 'search' => 'order',
  31. 'list' => true,
  32. ),
  33. 'account_id' => array
  34. (
  35. 'type' => 'int-11',
  36. 'name' => '所属账户',
  37. 'default' => '1',
  38. 'desc' => '所属账户',
  39. 'match' => 'is_numeric',
  40. 'update' => 'hidden',
  41. ),
  42. 'per' => array
  43. (
  44. 'type' => 'varchar-11',
  45. 'name' => '银联交易手续费百分比-如输入10,就是从总支付金额中收取10%手续费,这个会自动扣掉,输入0.1就是千分之1',
  46. 'default' => '10',
  47. 'desc' => '银联交易手续费百分比',
  48. 'match' => 'is_numeric',
  49. 'update' => 'text',
  50. ),
  51. 'cash_jy_per' => array
  52. (
  53. 'type' => 'varchar-11',
  54. 'name' => '平台交易手续费百分比-如输入10,就是从总支付金额中收取10%手续费,这个会自动扣掉,输入0.1就是千分之1',
  55. 'default' => '',
  56. 'desc' => '平台交易手续费百分比',
  57. 'match' => 'is_numeric',
  58. 'update' => 'text',
  59. ),
  60. 'sign_key' => array
  61. (
  62. 'type' => 'varchar-150',
  63. 'name' => '自助签约key',
  64. 'default' => '',
  65. 'desc' => '自助签约key',
  66. 'match' => 'is_string',
  67. 'update' => 'text',
  68. ),
  69. 'sign_accesser_id' => array
  70. (
  71. 'type' => 'varchar-150',
  72. 'name' => '自助签约accesser_id',
  73. 'default' => '',
  74. 'desc' => '自助签约accesser_id',
  75. 'match' => 'is_string',
  76. 'update' => 'text',
  77. ),
  78. 'tx_sys_id' => array
  79. (
  80. 'type' => 'varchar-150',
  81. 'name' => '提现系统编号',
  82. 'default' => '',
  83. 'desc' => '提现系统编号',
  84. 'match' => 'is_string',
  85. 'update' => 'text',
  86. ),
  87. 'tx_private_key' => array
  88. (
  89. 'type' => 'varchar-2000',
  90. 'name' => '提现私钥',
  91. 'default' => '',
  92. 'desc' => '提现私钥',
  93. 'match' => 'is_string',
  94. 'update' => 'textarea',
  95. ),
  96. 'tx_private_key_pkcs1' => array
  97. (
  98. 'type' => 'varchar-2000',
  99. 'name' => '提现PKCS1私钥',
  100. 'default' => '',
  101. 'desc' => '提现PKCS1私钥',
  102. 'match' => 'is_string',
  103. 'update' => 'textarea',
  104. ),
  105. 'tx_public_key' => array
  106. (
  107. 'type' => 'varchar-2000',
  108. 'name' => '提现公钥',
  109. 'default' => '',
  110. 'desc' => '提现公钥',
  111. 'match' => 'is_string',
  112. 'update' => 'textarea',
  113. ),
  114. 'type' => array
  115. (
  116. 'type' => 'tinyint-1',
  117. 'name' => '资金管理设置',
  118. 'default' => '1',
  119. 'desc' => '支付类型',
  120. 'match' => 'is_string',
  121. 'update' => 'radio',
  122. 'option' => $type,
  123. 'control' => 'type',
  124. ),
  125. 'cash_groupid' => array
  126. (
  127. 'type' => 'varchar-200',
  128. 'name' => '集团号',
  129. 'default' => '',
  130. 'desc' => '集团号',
  131. 'match' => 'is_string',
  132. 'update' => 'text',
  133. 'show' => 'type=2',
  134. ),
  135. 'cash_per' => array
  136. (
  137. 'type' => 'int-11',
  138. 'name' => '主体分账百分比-如输入10,就是从总支付金额中分账10%',
  139. 'default' => '10',
  140. 'desc' => '主体分账百分比',
  141. 'match' => 'is_numeric',
  142. //'update' => 'text',
  143. 'show' => 'type=2',
  144. ),
  145. 'cash_type' => array
  146. (
  147. 'type' => 'tinyint-1',
  148. 'name' => '主体分账类型',
  149. 'default' => '1',
  150. 'desc' => '主体分账类型',
  151. 'match' => 'is_string',
  152. //'update' => 'radio',
  153. 'option' => $cash_type,
  154. ),
  155. 'cash_mid' => array
  156. (
  157. 'type' => 'varchar-200',
  158. 'name' => '主体分账商户号-已废弃',
  159. 'default' => '',
  160. 'desc' => '主体分账商户号',
  161. 'match' => 'is_string',
  162. 'update' => 'text',
  163. 'show' => 'type=2',
  164. ),
  165. 'cash_merno' => array
  166. (
  167. 'type' => 'varchar-200',
  168. 'name' => '主体分账企业用户号-已废弃',
  169. 'default' => '',
  170. 'desc' => '主体分账企业用户号',
  171. 'match' => 'is_string',
  172. 'update' => 'text',
  173. 'show' => 'type=2',
  174. ),
  175. 'cash_card' => array
  176. (
  177. 'type' => 'varchar-150',
  178. 'name' => '主体分账卡号-已废弃',
  179. 'default' => '',
  180. 'desc' => '主体分账卡号',
  181. 'match' => 'is_string',
  182. 'update' => 'text',
  183. 'show' => 'type=2',
  184. ),
  185. 'cash_private_file' => array
  186. (
  187. 'type' => 'varchar-150',
  188. 'name' => '资金管理私钥文件',
  189. 'default' => '',
  190. 'desc' => '资金管理私钥文件',
  191. 'match' => 'is_string',
  192. 'update' => 'upload',
  193. 'key' => '4',
  194. 'show' => 'type=2',
  195. ),
  196. 'cash_private_file_password' => array
  197. (
  198. 'type' => 'varchar-150',
  199. 'name' => '资金管理私钥文件密码',
  200. 'default' => '',
  201. 'desc' => '资金管理私钥文件密码',
  202. 'match' => 'is_string',
  203. 'update' => 'text',
  204. 'show' => 'type=2',
  205. ),
  206. 'cash_public_file' => array
  207. (
  208. 'type' => 'varchar-150',
  209. 'name' => '资金管理公钥文件',
  210. 'default' => '',
  211. 'desc' => '资金管理公钥文件',
  212. 'match' => 'is_string',
  213. 'update' => 'upload',
  214. 'key' => '4',
  215. 'show' => 'type=2',
  216. ),
  217. 'state' => array
  218. (
  219. 'type' => 'tinyint-1',
  220. 'name' => '状态',
  221. 'default' => '1',
  222. 'desc' => '请选择状态',
  223. 'match' => 'is_numeric',
  224. ),
  225. 'cdate' => array
  226. (
  227. 'type' => 'int-11',
  228. 'name' => '申请时间',
  229. 'match' => array('is_numeric', time()),
  230. 'desc' => '',
  231. # 只有insert时才生效
  232. 'insert' => true,
  233. 'search' => 'date',
  234. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  235. ),
  236. ),
  237. 'manage' => array
  238. (
  239. ),
  240. );