mm_os 2.9.2 → 2.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (631) hide show
  1. package/cache/route/main/config.json +1 -0
  2. package/cache/sys/app_admin/config.json +1 -0
  3. package/cache/sys/main/config.json +1 -0
  4. package/cache/sys/mqtt_engine/config.json +1 -0
  5. package/cache/sys/user/config.json +1 -0
  6. package/cache/user/main/config.json +1 -0
  7. package/core/com/mqtt/index.js +4 -4
  8. package/core/com/task/drive.js +7 -2
  9. package/core/com/task/index.js +2 -0
  10. package/demo/app/dev/LICENSE +201 -0
  11. package/demo/app/dev/README.md +1 -0
  12. package/demo/app/dev/app.js +147 -0
  13. package/demo/app/dev/app.json +12 -0
  14. package/demo/app/dev/event_api/client/event.json +10 -0
  15. package/demo/app/dev/event_api/client/main.js +17 -0
  16. package/demo/app/dev/event_api/manage/event.json +19 -0
  17. package/demo/app/dev/event_api/manage/main.js +26 -0
  18. package/demo/app/dev/plugin/doc/static/api_list.html +144 -0
  19. package/demo/app/dev/plugin/doc/static/api_view.html +692 -0
  20. package/demo/app/dev/plugin/doc/static/index.html +138 -0
  21. package/demo/app/dev/plugin/doc/static/request_test.html +311 -0
  22. package/demo/app/dev/plugin/doc/static/static.js +28 -0
  23. package/demo/app/dev/plugin/doc/static/static.json +20 -0
  24. package/demo/app/dev/plugin/main/api_dev_client/api/api.json +10 -0
  25. package/demo/app/dev/plugin/main/api_dev_client/api/index.js +54 -0
  26. package/demo/app/dev/plugin/main/api_dev_client/api/param.json +31 -0
  27. package/demo/app/dev/plugin/main/api_dev_client/app/api.json +13 -0
  28. package/demo/app/dev/plugin/main/api_dev_client/app/index.js +13 -0
  29. package/demo/app/dev/plugin/main/api_dev_client/app/param.json +147 -0
  30. package/demo/app/dev/plugin/main/api_dev_client/app/sql.json +28 -0
  31. package/demo/app/dev/plugin/main/api_dev_client/auto/api.json +37 -0
  32. package/demo/app/dev/plugin/main/api_dev_client/auto/auto_db.js +70 -0
  33. package/demo/app/dev/plugin/main/api_dev_client/auto/auto_file.js +32 -0
  34. package/demo/app/dev/plugin/main/api_dev_client/auto/index.js +51 -0
  35. package/demo/app/dev/plugin/main/api_dev_client/auto/param.json +51 -0
  36. package/demo/app/dev/plugin/main/api_dev_client/com.js +348 -0
  37. package/demo/app/dev/plugin/main/api_dev_client/db/api.json +10 -0
  38. package/demo/app/dev/plugin/main/api_dev_client/db/index.js +69 -0
  39. package/demo/app/dev/plugin/main/api_dev_client/db/param.json +31 -0
  40. package/demo/app/dev/plugin/main/api_dev_client/dict/api.json +10 -0
  41. package/demo/app/dev/plugin/main/api_dev_client/dict/index.js +49 -0
  42. package/demo/app/dev/plugin/main/api_dev_client/dict/param.json +29 -0
  43. package/demo/app/dev/plugin/main/api_dev_client/event/api.json +10 -0
  44. package/demo/app/dev/plugin/main/api_dev_client/event/index.js +31 -0
  45. package/demo/app/dev/plugin/main/api_dev_client/event/param.json +31 -0
  46. package/demo/app/dev/plugin/main/api_dev_client/help/api.json +10 -0
  47. package/demo/app/dev/plugin/main/api_dev_client/help/index.js +14 -0
  48. package/demo/app/dev/plugin/main/api_dev_client/help/param.json +31 -0
  49. package/demo/app/dev/plugin/main/api_dev_client/nav/api.json +10 -0
  50. package/demo/app/dev/plugin/main/api_dev_client/nav/index.js +36 -0
  51. package/demo/app/dev/plugin/main/api_dev_client/nav/param.json +36 -0
  52. package/demo/app/dev/plugin/main/api_dev_client/plugin/api.json +10 -0
  53. package/demo/app/dev/plugin/main/api_dev_client/plugin/index.js +13 -0
  54. package/demo/app/dev/plugin/main/api_dev_client/plugin/param.json +31 -0
  55. package/demo/app/dev/plugin/main/api_dev_client/source/api.json +10 -0
  56. package/demo/app/dev/plugin/main/api_dev_client/source/index.js +14 -0
  57. package/demo/app/dev/plugin/main/api_dev_client/source/param.json +31 -0
  58. package/demo/app/dev/plugin/main/api_dev_client/sql/api.json +10 -0
  59. package/demo/app/dev/plugin/main/api_dev_client/sql/index.js +13 -0
  60. package/demo/app/dev/plugin/main/api_dev_client/sql/param.json +31 -0
  61. package/demo/app/dev/plugin/main/api_dev_client/task/api.json +16 -0
  62. package/demo/app/dev/plugin/main/api_dev_client/task/index.js +13 -0
  63. package/demo/app/dev/plugin/main/api_dev_client/task/param.json +31 -0
  64. package/demo/app/dev/plugin/main/api_dev_client/translate/api.json +39 -0
  65. package/demo/app/dev/plugin/main/api_dev_client/translate/index.js +43 -0
  66. package/demo/app/dev/plugin/main/api_dev_client/translate/param.json +130 -0
  67. package/demo/app/dev/plugin/main/api_dev_client/translate/sql.json +62 -0
  68. package/demo/app/dev/plugin/main/api_dev_client/ui/api.json +10 -0
  69. package/demo/app/dev/plugin/main/api_dev_client/ui/index.js +146 -0
  70. package/demo/app/dev/plugin/main/api_dev_client/ui/param.json +31 -0
  71. package/demo/app/dev/plugin/main/api_dev_client/view/api.json +10 -0
  72. package/demo/app/dev/plugin/main/api_dev_client/view/index.js +100 -0
  73. package/demo/app/dev/plugin/main/api_dev_client/view/param.json +29 -0
  74. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/block/nav.vue +12 -0
  75. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/block/obj.vue +12 -0
  76. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/block/post.vue +12 -0
  77. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/block/query.vue +12 -0
  78. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/edit.vue +39 -0
  79. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/list.vue +12 -0
  80. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/search.vue +12 -0
  81. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/table.vue +12 -0
  82. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/type.vue +12 -0
  83. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/page/view.vue +56 -0
  84. package/demo/app/dev/plugin/main/api_dev_client/view/tpl/view.json +48 -0
  85. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/api.json +37 -0
  86. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/auto_db.js +120 -0
  87. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/copy/copy.js +101 -0
  88. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/copy/copy_framework.js +118 -0
  89. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/copy/copy_template.js +78 -0
  90. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/copy_file.js +97 -0
  91. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/common.js +198 -0
  92. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/django_server.js +104 -0
  93. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/helper.js +161 -0
  94. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/koa_art_server.js +102 -0
  95. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/mini_app_home.js +415 -0
  96. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/razor.js +0 -0
  97. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/springboot.js +0 -0
  98. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/thinkphp.js +0 -0
  99. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/uni_app_home.js +418 -0
  100. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/vue_cli_admin.js +78 -0
  101. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create/vue_cli_home.js +112 -0
  102. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/create_file.js +97 -0
  103. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/db/add_data.js +221 -0
  104. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/db/create_table.js +162 -0
  105. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/db/set_auth_table.js +86 -0
  106. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/index.js +524 -0
  107. package/demo/app/dev/plugin/main/api_dev_manage/auto_subject/param.json +37 -0
  108. package/demo/app/route/app.js +131 -0
  109. package/demo/app/route/app.json +11 -0
  110. package/demo/app/route/event_api/client/event.json +10 -0
  111. package/demo/app/route/event_api/client/main.js +19 -0
  112. package/demo/app/route/event_api/manage/event.json +18 -0
  113. package/demo/app/route/event_api/manage/main.js +70 -0
  114. package/demo/app/route/plugin/main/api_route_client/pass/api.json +37 -0
  115. package/demo/app/route/plugin/main/api_route_client/pass/index.js +33 -0
  116. package/demo/app/route/plugin/main/api_route_client/pass/param.json +50 -0
  117. package/demo/app/route/plugin/main/index.js +144 -0
  118. package/demo/app/route/plugin/main/plugin.json +20 -0
  119. package/demo/app/sys/.gitmodules +3 -0
  120. package/demo/app/sys/LICENSE +201 -0
  121. package/demo/app/sys/README.md +1 -0
  122. package/demo/app/sys/app.js +148 -0
  123. package/demo/app/sys/app.json +10 -0
  124. package/demo/app/sys/event_api/api/after.js +12 -0
  125. package/demo/app/sys/event_api/api/before.js +78 -0
  126. package/demo/app/sys/event_api/api/check.js +56 -0
  127. package/demo/app/sys/event_api/api/event.json +41 -0
  128. package/demo/app/sys/event_api/api/main.js +17 -0
  129. package/demo/app/sys/event_api/apis/before.js +76 -0
  130. package/demo/app/sys/event_api/apis/event.json +21 -0
  131. package/demo/app/sys/event_api/apis/main.js +17 -0
  132. package/demo/app/sys/event_api/client/event.json +10 -0
  133. package/demo/app/sys/event_api/client/main.js +15 -0
  134. package/demo/app/sys/event_api/doc/event.json +18 -0
  135. package/demo/app/sys/event_api/doc/main.js +67 -0
  136. package/demo/app/sys/event_api/img/event.json +11 -0
  137. package/demo/app/sys/event_api/img/main.js +90 -0
  138. package/demo/app/sys/event_api/manage/event.json +10 -0
  139. package/demo/app/sys/event_api/manage/main.js +15 -0
  140. package/demo/app/sys/event_api/upload/event.json +10 -0
  141. package/demo/app/sys/event_api/upload/main.js +15 -0
  142. package/demo/app/sys/event_api/web/check.js +34 -0
  143. package/demo/app/sys/event_api/web/event.json +39 -0
  144. package/demo/app/sys/event_api/web/main.js +36 -0
  145. package/demo/app/sys/event_api/ws/event.json +10 -0
  146. package/demo/app/sys/event_api/ws/main.js +15 -0
  147. package/demo/app/sys/plugin/app_admin/index.js +127 -0
  148. package/demo/app/sys/plugin/app_admin/plugin.json +20 -0
  149. package/demo/app/sys/plugin/main/api_client/activation/api.json +29 -0
  150. package/demo/app/sys/plugin/main/api_client/activation/index.js +185 -0
  151. package/demo/app/sys/plugin/main/api_client/activation/param.json +56 -0
  152. package/demo/app/sys/plugin/main/api_client/app_balance/api.json +18 -0
  153. package/demo/app/sys/plugin/main/api_client/app_balance/index.js +61 -0
  154. package/demo/app/sys/plugin/main/api_client/app_balance/param.json +36 -0
  155. package/demo/app/sys/plugin/main/api_client/app_pay/api.json +23 -0
  156. package/demo/app/sys/plugin/main/api_client/app_pay/index.js +65 -0
  157. package/demo/app/sys/plugin/main/api_client/app_pay/param.json +61 -0
  158. package/demo/app/sys/plugin/main/api_client/app_state/api.json +27 -0
  159. package/demo/app/sys/plugin/main/api_client/app_state/index.js +46 -0
  160. package/demo/app/sys/plugin/main/api_client/app_state/param.json +36 -0
  161. package/demo/app/sys/plugin/main/api_client/component/api.json +27 -0
  162. package/demo/app/sys/plugin/main/api_client/component/index.js +331 -0
  163. package/demo/app/sys/plugin/main/api_client/config/api.json +37 -0
  164. package/demo/app/sys/plugin/main/api_client/config/index.js +36 -0
  165. package/demo/app/sys/plugin/main/api_client/config/param.json +27 -0
  166. package/demo/app/sys/plugin/main/api_client/config/sql.json +70 -0
  167. package/demo/app/sys/plugin/main/api_client/download/api.json +37 -0
  168. package/demo/app/sys/plugin/main/api_client/download/index.js +60 -0
  169. package/demo/app/sys/plugin/main/api_client/download/param.json +34 -0
  170. package/demo/app/sys/plugin/main/api_client/install/api.json +24 -0
  171. package/demo/app/sys/plugin/main/api_client/install/index.js +216 -0
  172. package/demo/app/sys/plugin/main/api_client/install/param.json +64 -0
  173. package/demo/app/sys/plugin/main/api_client/lang/api.json +37 -0
  174. package/demo/app/sys/plugin/main/api_client/lang/index.js +27 -0
  175. package/demo/app/sys/plugin/main/api_client/lang/param.json +22 -0
  176. package/demo/app/sys/plugin/main/api_client/nav/api.json +15 -0
  177. package/demo/app/sys/plugin/main/api_client/nav/index.js +37 -0
  178. package/demo/app/sys/plugin/main/api_client/nav/param.json +87 -0
  179. package/demo/app/sys/plugin/main/api_client/overview/api.json +24 -0
  180. package/demo/app/sys/plugin/main/api_client/overview/index.js +29 -0
  181. package/demo/app/sys/plugin/main/api_client/overview/param.json +130 -0
  182. package/demo/app/sys/plugin/main/api_client/overview/sql.json +70 -0
  183. package/demo/app/sys/plugin/main/api_client/query/api.json +35 -0
  184. package/demo/app/sys/plugin/main/api_client/query/index.js +48 -0
  185. package/demo/app/sys/plugin/main/api_client/theme/api.json +37 -0
  186. package/demo/app/sys/plugin/main/api_client/theme/index.js +30 -0
  187. package/demo/app/sys/plugin/main/api_client/theme/param.json +31 -0
  188. package/demo/app/sys/plugin/main/api_client/translate/api.json +39 -0
  189. package/demo/app/sys/plugin/main/api_client/translate/index.js +21 -0
  190. package/demo/app/sys/plugin/main/api_client/translate/param.json +130 -0
  191. package/demo/app/sys/plugin/main/api_client/translate/sql.json +62 -0
  192. package/demo/app/sys/plugin/main/api_client/version/api.json +29 -0
  193. package/demo/app/sys/plugin/main/api_client/version/index.js +132 -0
  194. package/demo/app/sys/plugin/main/api_client/version/param.json +130 -0
  195. package/demo/app/sys/plugin/main/api_client/zip/api.json +31 -0
  196. package/demo/app/sys/plugin/main/api_client/zip/index.js +29 -0
  197. package/demo/app/sys/plugin/main/api_client/zip/param.json +48 -0
  198. package/demo/app/sys/plugin/main/api_sys_client/count/api.json +27 -0
  199. package/demo/app/sys/plugin/main/api_sys_client/count/index.js +73 -0
  200. package/demo/app/sys/plugin/main/api_sys_client/lang/api.json +37 -0
  201. package/demo/app/sys/plugin/main/api_sys_client/lang/index.js +28 -0
  202. package/demo/app/sys/plugin/main/api_sys_client/lang/param.json +22 -0
  203. package/demo/app/sys/plugin/main/api_sys_client/log/api.json +29 -0
  204. package/demo/app/sys/plugin/main/api_sys_client/log/index.js +42 -0
  205. package/demo/app/sys/plugin/main/api_sys_client/log/param.json +130 -0
  206. package/demo/app/sys/plugin/main/api_sys_client/options/api.json +30 -0
  207. package/demo/app/sys/plugin/main/api_sys_client/options/index.js +28 -0
  208. package/demo/app/sys/plugin/main/api_sys_client/options/param.json +130 -0
  209. package/demo/app/sys/plugin/main/api_sys_client/query/api.json +35 -0
  210. package/demo/app/sys/plugin/main/api_sys_client/query/index.js +48 -0
  211. package/demo/app/sys/plugin/main/api_sys_client/theme/api.json +37 -0
  212. package/demo/app/sys/plugin/main/api_sys_client/theme/index.js +30 -0
  213. package/demo/app/sys/plugin/main/api_sys_client/theme/param.json +31 -0
  214. package/demo/app/sys/plugin/main/api_sys_web/index/api.json +37 -0
  215. package/demo/app/sys/plugin/main/api_sys_web/index/index.js +26 -0
  216. package/demo/app/sys/plugin/main/api_upload/chunk/api.json +29 -0
  217. package/demo/app/sys/plugin/main/api_upload/chunk/index.js +38 -0
  218. package/demo/app/sys/plugin/main/api_upload/chunk/param.json +27 -0
  219. package/demo/app/sys/plugin/main/api_upload/delete/api.json +29 -0
  220. package/demo/app/sys/plugin/main/api_upload/delete/index.js +38 -0
  221. package/demo/app/sys/plugin/main/api_upload/delete/param.json +27 -0
  222. package/demo/app/sys/plugin/main/api_upload/file/api.json +15 -0
  223. package/demo/app/sys/plugin/main/api_upload/file/index.js +114 -0
  224. package/demo/app/sys/plugin/main/api_upload/file/param.json +9 -0
  225. package/demo/app/sys/plugin/main/api_upload/image/api.json +16 -0
  226. package/demo/app/sys/plugin/main/api_upload/image/index.js +45 -0
  227. package/demo/app/sys/plugin/main/api_upload/image/param.json +9 -0
  228. package/demo/app/sys/plugin/main/api_upload/merge/api.json +29 -0
  229. package/demo/app/sys/plugin/main/api_upload/merge/index.js +38 -0
  230. package/demo/app/sys/plugin/main/api_upload/merge/param.json +27 -0
  231. package/demo/app/sys/plugin/main/api_upload/video/api.json +29 -0
  232. package/demo/app/sys/plugin/main/api_upload/video/index.js +48 -0
  233. package/demo/app/sys/plugin/main/api_upload/video/param.json +25 -0
  234. package/demo/app/sys/plugin/main/index.js +127 -0
  235. package/demo/app/sys/plugin/main/plugin.json +19 -0
  236. package/demo/app/sys/plugin/main/static/article_list.vue +488 -0
  237. package/demo/app/sys/plugin/main/static/img/logo.png +0 -0
  238. package/demo/app/sys/plugin/main/static/static.json +18 -0
  239. package/demo/app/sys/plugin/main/task/task_demo/index.js +37 -0
  240. package/demo/app/sys/plugin/main/task/task_demo/task.json +24 -0
  241. package/demo/app/sys/plugin/mqtt_engine/LICENSE +201 -0
  242. package/demo/app/sys/plugin/mqtt_engine/api_sys_client/scheme/api.json +33 -0
  243. package/demo/app/sys/plugin/mqtt_engine/api_sys_client/scheme/index.js +31 -0
  244. package/demo/app/sys/plugin/mqtt_engine/api_sys_client/scheme/param.json +130 -0
  245. package/demo/app/sys/plugin/mqtt_engine/index.js +51 -0
  246. package/demo/app/sys/plugin/mqtt_engine/mqtt/df/index.js +509 -0
  247. package/demo/app/sys/plugin/mqtt_engine/mqtt/df/mqtt.json +24 -0
  248. package/demo/app/sys/plugin/mqtt_engine/mqtt/zs/index.js +622 -0
  249. package/demo/app/sys/plugin/mqtt_engine/mqtt/zs/mqtt.json +36 -0
  250. package/demo/app/sys/plugin/mqtt_engine/plugin.json +21 -0
  251. package/demo/app/sys/plugin/mqtt_engine/static/img/logo.png +0 -0
  252. package/demo/app/sys/plugin/mqtt_engine/static/img/logo1.png +0 -0
  253. package/demo/app/sys/plugin/mqtt_engine/static/static.json +18 -0
  254. package/demo/app/sys/plugin/server/api_sys_client/ad/api.json +12 -0
  255. package/demo/app/sys/plugin/server/api_sys_client/ad/param.json +685 -0
  256. package/demo/app/sys/plugin/server/api_sys_client/ad/sql.json +114 -0
  257. package/demo/app/sys/plugin/server/api_sys_client/address_province/api.json +12 -0
  258. package/demo/app/sys/plugin/server/api_sys_client/address_province/param.json +156 -0
  259. package/demo/app/sys/plugin/server/api_sys_client/address_province/sql.json +25 -0
  260. package/demo/app/sys/plugin/server/api_sys_client/app/api.json +12 -0
  261. package/demo/app/sys/plugin/server/api_sys_client/app/param.json +437 -0
  262. package/demo/app/sys/plugin/server/api_sys_client/app/sql.json +71 -0
  263. package/demo/app/sys/plugin/server/api_sys_client/app_refresh/api.json +12 -0
  264. package/demo/app/sys/plugin/server/api_sys_client/app_refresh/param.json +158 -0
  265. package/demo/app/sys/plugin/server/api_sys_client/app_refresh/sql.json +28 -0
  266. package/demo/app/sys/plugin/server/api_sys_client/block/api.json +12 -0
  267. package/demo/app/sys/plugin/server/api_sys_client/block/param.json +318 -0
  268. package/demo/app/sys/plugin/server/api_sys_client/block/sql.json +48 -0
  269. package/demo/app/sys/plugin/server/api_sys_client/config/api.json +12 -0
  270. package/demo/app/sys/plugin/server/api_sys_client/config/param.json +259 -0
  271. package/demo/app/sys/plugin/server/api_sys_client/config/sql.json +93 -0
  272. package/demo/app/sys/plugin/server/api_sys_client/file/api.json +12 -0
  273. package/demo/app/sys/plugin/server/api_sys_client/file/param.json +268 -0
  274. package/demo/app/sys/plugin/server/api_sys_client/file/sql.json +30 -0
  275. package/demo/app/sys/plugin/server/api_sys_client/lang/api.json +12 -0
  276. package/demo/app/sys/plugin/server/api_sys_client/lang/param.json +175 -0
  277. package/demo/app/sys/plugin/server/api_sys_client/lang/sql.json +40 -0
  278. package/demo/app/sys/plugin/server/api_sys_client/message/api.json +13 -0
  279. package/demo/app/sys/plugin/server/api_sys_client/message/index.js +31 -0
  280. package/demo/app/sys/plugin/server/api_sys_client/message/param.json +147 -0
  281. package/demo/app/sys/plugin/server/api_sys_client/message/sql.json +24 -0
  282. package/demo/app/sys/plugin/server/api_sys_client/nav/api.json +13 -0
  283. package/demo/app/sys/plugin/server/api_sys_client/nav/index.js +52 -0
  284. package/demo/app/sys/plugin/server/api_sys_client/nav/param.json +295 -0
  285. package/demo/app/sys/plugin/server/api_sys_client/nav/sql.json +63 -0
  286. package/demo/app/sys/plugin/server/api_sys_client/pay/api.json +12 -0
  287. package/demo/app/sys/plugin/server/api_sys_client/pay/param.json +391 -0
  288. package/demo/app/sys/plugin/server/api_sys_client/pay/sql.json +76 -0
  289. package/demo/app/sys/plugin/server/api_sys_client/pay_type/api.json +12 -0
  290. package/demo/app/sys/plugin/server/api_sys_client/pay_type/param.json +242 -0
  291. package/demo/app/sys/plugin/server/api_sys_client/pay_type/sql.json +74 -0
  292. package/demo/app/sys/plugin/server/api_sys_client/project/api.json +12 -0
  293. package/demo/app/sys/plugin/server/api_sys_client/project/param.json +796 -0
  294. package/demo/app/sys/plugin/server/api_sys_client/project/sql.json +163 -0
  295. package/demo/app/sys/plugin/server/api_sys_client/recharge/api.json +12 -0
  296. package/demo/app/sys/plugin/server/api_sys_client/recharge/param.json +311 -0
  297. package/demo/app/sys/plugin/server/api_sys_client/recharge/sql.json +102 -0
  298. package/demo/app/sys/plugin/server/api_sys_client/scene/api.json +12 -0
  299. package/demo/app/sys/plugin/server/api_sys_client/scene/param.json +226 -0
  300. package/demo/app/sys/plugin/server/api_sys_client/scene/sql.json +49 -0
  301. package/demo/app/sys/plugin/server/api_sys_client/seo/api.json +12 -0
  302. package/demo/app/sys/plugin/server/api_sys_client/seo/param.json +145 -0
  303. package/demo/app/sys/plugin/server/api_sys_client/seo/sql.json +49 -0
  304. package/demo/app/sys/plugin/server/api_sys_client/withdrawal/api.json +12 -0
  305. package/demo/app/sys/plugin/server/api_sys_client/withdrawal/param.json +378 -0
  306. package/demo/app/sys/plugin/server/api_sys_client/withdrawal/sql.json +92 -0
  307. package/demo/app/sys/plugin/server/api_sys_manage/ad/api.json +19 -0
  308. package/demo/app/sys/plugin/server/api_sys_manage/ad/index.js +27 -0
  309. package/demo/app/sys/plugin/server/api_sys_manage/ad/param.json +685 -0
  310. package/demo/app/sys/plugin/server/api_sys_manage/ad/sql.json +111 -0
  311. package/demo/app/sys/plugin/server/api_sys_manage/address_province/api.json +18 -0
  312. package/demo/app/sys/plugin/server/api_sys_manage/address_province/param.json +156 -0
  313. package/demo/app/sys/plugin/server/api_sys_manage/address_province/sql.json +23 -0
  314. package/demo/app/sys/plugin/server/api_sys_manage/app/api.json +18 -0
  315. package/demo/app/sys/plugin/server/api_sys_manage/app/param.json +437 -0
  316. package/demo/app/sys/plugin/server/api_sys_manage/app/sql.json +69 -0
  317. package/demo/app/sys/plugin/server/api_sys_manage/app_refresh/api.json +18 -0
  318. package/demo/app/sys/plugin/server/api_sys_manage/app_refresh/param.json +158 -0
  319. package/demo/app/sys/plugin/server/api_sys_manage/app_refresh/sql.json +27 -0
  320. package/demo/app/sys/plugin/server/api_sys_manage/block/api.json +18 -0
  321. package/demo/app/sys/plugin/server/api_sys_manage/block/param.json +318 -0
  322. package/demo/app/sys/plugin/server/api_sys_manage/block/sql.json +47 -0
  323. package/demo/app/sys/plugin/server/api_sys_manage/config/api.json +19 -0
  324. package/demo/app/sys/plugin/server/api_sys_manage/config/index.js +35 -0
  325. package/demo/app/sys/plugin/server/api_sys_manage/config/param.json +261 -0
  326. package/demo/app/sys/plugin/server/api_sys_manage/config/sql.json +92 -0
  327. package/demo/app/sys/plugin/server/api_sys_manage/file/api.json +18 -0
  328. package/demo/app/sys/plugin/server/api_sys_manage/file/param.json +268 -0
  329. package/demo/app/sys/plugin/server/api_sys_manage/file/sql.json +29 -0
  330. package/demo/app/sys/plugin/server/api_sys_manage/lang/api.json +19 -0
  331. package/demo/app/sys/plugin/server/api_sys_manage/lang/index.js +27 -0
  332. package/demo/app/sys/plugin/server/api_sys_manage/lang/param.json +175 -0
  333. package/demo/app/sys/plugin/server/api_sys_manage/lang/sql.json +40 -0
  334. package/demo/app/sys/plugin/server/api_sys_manage/message/api.json +18 -0
  335. package/demo/app/sys/plugin/server/api_sys_manage/message/param.json +152 -0
  336. package/demo/app/sys/plugin/server/api_sys_manage/message/sql.json +21 -0
  337. package/demo/app/sys/plugin/server/api_sys_manage/nav/api.json +19 -0
  338. package/demo/app/sys/plugin/server/api_sys_manage/nav/index.js +27 -0
  339. package/demo/app/sys/plugin/server/api_sys_manage/nav/param.json +295 -0
  340. package/demo/app/sys/plugin/server/api_sys_manage/nav/sql.json +61 -0
  341. package/demo/app/sys/plugin/server/api_sys_manage/pay/api.json +18 -0
  342. package/demo/app/sys/plugin/server/api_sys_manage/pay/param.json +391 -0
  343. package/demo/app/sys/plugin/server/api_sys_manage/pay/sql.json +75 -0
  344. package/demo/app/sys/plugin/server/api_sys_manage/pay_type/api.json +18 -0
  345. package/demo/app/sys/plugin/server/api_sys_manage/pay_type/param.json +242 -0
  346. package/demo/app/sys/plugin/server/api_sys_manage/pay_type/sql.json +73 -0
  347. package/demo/app/sys/plugin/server/api_sys_manage/project/api.json +18 -0
  348. package/demo/app/sys/plugin/server/api_sys_manage/project/param.json +796 -0
  349. package/demo/app/sys/plugin/server/api_sys_manage/project/sql.json +162 -0
  350. package/demo/app/sys/plugin/server/api_sys_manage/recharge/api.json +18 -0
  351. package/demo/app/sys/plugin/server/api_sys_manage/recharge/param.json +311 -0
  352. package/demo/app/sys/plugin/server/api_sys_manage/recharge/sql.json +101 -0
  353. package/demo/app/sys/plugin/server/api_sys_manage/scene/api.json +18 -0
  354. package/demo/app/sys/plugin/server/api_sys_manage/scene/param.json +226 -0
  355. package/demo/app/sys/plugin/server/api_sys_manage/scene/sql.json +48 -0
  356. package/demo/app/sys/plugin/server/api_sys_manage/seo/api.json +19 -0
  357. package/demo/app/sys/plugin/server/api_sys_manage/seo/index.js +26 -0
  358. package/demo/app/sys/plugin/server/api_sys_manage/seo/param.json +145 -0
  359. package/demo/app/sys/plugin/server/api_sys_manage/seo/sql.json +48 -0
  360. package/demo/app/sys/plugin/server/api_sys_manage/withdrawal/api.json +18 -0
  361. package/demo/app/sys/plugin/server/api_sys_manage/withdrawal/param.json +378 -0
  362. package/demo/app/sys/plugin/server/api_sys_manage/withdrawal/sql.json +91 -0
  363. package/demo/app/sys/plugin/server/db/ad.db.json +622 -0
  364. package/demo/app/sys/plugin/server/db/address_province.db.json +82 -0
  365. package/demo/app/sys/plugin/server/db/app.db.json +369 -0
  366. package/demo/app/sys/plugin/server/db/app_refresh.db.json +117 -0
  367. package/demo/app/sys/plugin/server/db/block.db.json +352 -0
  368. package/demo/app/sys/plugin/server/db/config.db.json +226 -0
  369. package/demo/app/sys/plugin/server/db/file.db.json +172 -0
  370. package/demo/app/sys/plugin/server/db/lang.db.json +208 -0
  371. package/demo/app/sys/plugin/server/db/message.db.json +99 -0
  372. package/demo/app/sys/plugin/server/db/nav.db.json +298 -0
  373. package/demo/app/sys/plugin/server/db/pay.db.json +316 -0
  374. package/demo/app/sys/plugin/server/db/pay_type.db.json +226 -0
  375. package/demo/app/sys/plugin/server/db/project.db.json +622 -0
  376. package/demo/app/sys/plugin/server/db/recharge.db.json +226 -0
  377. package/demo/app/sys/plugin/server/db/scene.db.json +208 -0
  378. package/demo/app/sys/plugin/server/db/seo.db.json +136 -0
  379. package/demo/app/sys/plugin/server/db/withdrawal.db.json +298 -0
  380. package/demo/app/sys/plugin/user/index.js +127 -0
  381. package/demo/app/sys/plugin/user/plugin.json +20 -0
  382. package/demo/app/sys/plugin/user/static/img/logo.png +0 -0
  383. package/demo/app/sys/plugin/user/static/static.js +28 -0
  384. package/demo/app/sys/plugin/user/static/static.json +20 -0
  385. package/demo/app/sys/static/img/avatar_1674484608066.png +0 -0
  386. package/demo/app/sys/static/img/avatar_1674633778171.jpeg +0 -0
  387. package/demo/app/sys/static/img/avatar_1674962702334.jpeg +0 -0
  388. package/demo/app/sys/static/img/avatar_1675075431736.jpeg +0 -0
  389. package/demo/app/sys/static/img/avatar_1675497065533.jpeg +0 -0
  390. package/demo/app/sys/static/img/avatar_1685352550990.jpeg +0 -0
  391. package/demo/app/sys/static/img/avatar_1685353685992.jpeg +0 -0
  392. package/demo/app/sys/static/img/avatar_1685353956587.jpeg +0 -0
  393. package/demo/app/sys/static/img/avatar_1685353971148.jpeg +0 -0
  394. package/demo/app/sys/static/img/avatar_1685353983723.jpeg +0 -0
  395. package/demo/app/sys/static/img/avatar_1685354014745.jpeg +0 -0
  396. package/demo/app/sys/static/img/avatar_1685354122355.jpeg +0 -0
  397. package/demo/app/sys/static/img/avatar_1685357983520.jpeg +0 -0
  398. package/demo/app/sys/static/img/avatar_1685358453383.jpeg +0 -0
  399. package/demo/app/sys/static/img/avatar_1685416570438.jpeg +0 -0
  400. package/demo/app/sys/static/img/avatar_1685512675830.png +0 -0
  401. package/demo/app/sys/static/img/avatar_1685939425608.jpeg +0 -0
  402. package/demo/app/sys/static/img/avatar_1685939886560.jpeg +0 -0
  403. package/demo/app/sys/static/img/avatar_1686106313194.png +0 -0
  404. package/demo/app/sys/static/img/avatar_1686371876175.png +0 -0
  405. package/demo/app/sys/static/img/avatar_1686372033596.png +0 -0
  406. package/demo/app/sys/static/img/avatar_1688215220669.png +0 -0
  407. package/demo/app/sys/static/img/avatar_1688531184690.png +0 -0
  408. package/demo/app/sys/static/img/avatar_1688531233080.png +0 -0
  409. package/demo/app/sys/static/img/avatar_1688548526909.png +0 -0
  410. package/demo/app/sys/static/img/avatar_1688549213411.png +0 -0
  411. package/demo/app/sys/static/img/avatar_1688549511977.png +0 -0
  412. package/demo/app/sys/static/img/avatar_1688549685464.png +0 -0
  413. package/demo/app/sys/static/img/avatar_1688608623049.png +0 -0
  414. package/demo/app/sys/static/img/avatar_1688638500476.png +0 -0
  415. package/demo/app/sys/static/img/avatar_1688638515195.png +0 -0
  416. package/demo/app/sys/static/img/avatar_1688638539928.png +0 -0
  417. package/demo/app/sys/static/img/avatar_1688638557960.png +0 -0
  418. package/demo/app/sys/static/img/avatar_1688638761798.png +0 -0
  419. package/demo/app/sys/static/img/avatar_1688638943140.png +0 -0
  420. package/demo/app/sys/static/img/avatar_1688639068330.png +0 -0
  421. package/demo/app/sys/static/img/image_1685357101273.jpeg +0 -0
  422. package/demo/app/sys/static/img/logo.png +0 -0
  423. package/demo/app/sys/static/static.js +28 -0
  424. package/demo/app/sys/static/static.json +20 -0
  425. package/demo/app/user/LICENSE +201 -0
  426. package/demo/app/user/app.js +144 -0
  427. package/demo/app/user/app.json +10 -0
  428. package/demo/app/user/event_api/client/event.json +10 -0
  429. package/demo/app/user/event_api/client/main.js +17 -0
  430. package/demo/app/user/event_api/manage/event.json +10 -0
  431. package/demo/app/user/event_api/manage/main.js +17 -0
  432. package/demo/app/user/event_api/web/event.json +20 -0
  433. package/demo/app/user/event_api/web/main.js +39 -0
  434. package/demo/app/user/plugin/main/api_user_client/account/api.json +41 -0
  435. package/demo/app/user/plugin/main/api_user_client/account/index.js +54 -0
  436. package/demo/app/user/plugin/main/api_user_client/account/param.json +130 -0
  437. package/demo/app/user/plugin/main/api_user_client/account/sql.json +70 -0
  438. package/demo/app/user/plugin/main/api_user_client/address_login/api.json +27 -0
  439. package/demo/app/user/plugin/main/api_user_client/address_login/index.js +35 -0
  440. package/demo/app/user/plugin/main/api_user_client/address_login/param.json +130 -0
  441. package/demo/app/user/plugin/main/api_user_client/base/api.json +27 -0
  442. package/demo/app/user/plugin/main/api_user_client/base/index.js +92 -0
  443. package/demo/app/user/plugin/main/api_user_client/base/param.json +130 -0
  444. package/demo/app/user/plugin/main/api_user_client/core/api.json +20 -0
  445. package/demo/app/user/plugin/main/api_user_client/core/forgot.js +14 -0
  446. package/demo/app/user/plugin/main/api_user_client/core/password.js +14 -0
  447. package/demo/app/user/plugin/main/api_user_client/core/sign_out.js +26 -0
  448. package/demo/app/user/plugin/main/api_user_client/core/state.js +21 -0
  449. package/demo/app/user/plugin/main/api_user_client/count/api.json +27 -0
  450. package/demo/app/user/plugin/main/api_user_client/count/chongzhi.js +103 -0
  451. package/demo/app/user/plugin/main/api_user_client/count/index.js +24 -0
  452. package/demo/app/user/plugin/main/api_user_client/count/param.json +40 -0
  453. package/demo/app/user/plugin/main/api_user_client/count/sql.json +70 -0
  454. package/demo/app/user/plugin/main/api_user_client/data_count/api.json +37 -0
  455. package/demo/app/user/plugin/main/api_user_client/data_count/index.js +61 -0
  456. package/demo/app/user/plugin/main/api_user_client/email_code/api.json +37 -0
  457. package/demo/app/user/plugin/main/api_user_client/email_code/email_code.js +300 -0
  458. package/demo/app/user/plugin/main/api_user_client/email_code/index.js +18 -0
  459. package/demo/app/user/plugin/main/api_user_client/email_code/param.json +56 -0
  460. package/demo/app/user/plugin/main/api_user_client/forgot/api.json +37 -0
  461. package/demo/app/user/plugin/main/api_user_client/forgot/index - /345/211/257/346/234/254.jsbat" +41 -0
  462. package/demo/app/user/plugin/main/api_user_client/forgot/index.js +36 -0
  463. package/demo/app/user/plugin/main/api_user_client/forgot/param.json +57 -0
  464. package/demo/app/user/plugin/main/api_user_client/ip/api.json +39 -0
  465. package/demo/app/user/plugin/main/api_user_client/ip/index.js +43 -0
  466. package/demo/app/user/plugin/main/api_user_client/ip/param.json +130 -0
  467. package/demo/app/user/plugin/main/api_user_client/ip/sql.json +70 -0
  468. package/demo/app/user/plugin/main/api_user_client/message/api.json +29 -0
  469. package/demo/app/user/plugin/main/api_user_client/message/index.js +19 -0
  470. package/demo/app/user/plugin/main/api_user_client/message/param.json +36 -0
  471. package/demo/app/user/plugin/main/api_user_client/message/sql.json +21 -0
  472. package/demo/app/user/plugin/main/api_user_client/oauth/WXBizDataCrypt.js +33 -0
  473. package/demo/app/user/plugin/main/api_user_client/oauth/api.json +31 -0
  474. package/demo/app/user/plugin/main/api_user_client/oauth/index.js +16 -0
  475. package/demo/app/user/plugin/main/api_user_client/oauth/oauth.js +315 -0
  476. package/demo/app/user/plugin/main/api_user_client/oauth/oauth.json +88 -0
  477. package/demo/app/user/plugin/main/api_user_client/oauth/param.json +111 -0
  478. package/demo/app/user/plugin/main/api_user_client/password/api.json +21 -0
  479. package/demo/app/user/plugin/main/api_user_client/password/index.js +64 -0
  480. package/demo/app/user/plugin/main/api_user_client/password/param.json +45 -0
  481. package/demo/app/user/plugin/main/api_user_client/phone_code/aliyun.js +230 -0
  482. package/demo/app/user/plugin/main/api_user_client/phone_code/api.json +37 -0
  483. package/demo/app/user/plugin/main/api_user_client/phone_code/index.js +18 -0
  484. package/demo/app/user/plugin/main/api_user_client/phone_code/index.js_ +230 -0
  485. package/demo/app/user/plugin/main/api_user_client/phone_code/param.json +58 -0
  486. package/demo/app/user/plugin/main/api_user_client/phone_code/phone_code.js +297 -0
  487. package/demo/app/user/plugin/main/api_user_client/realname/api.json +21 -0
  488. package/demo/app/user/plugin/main/api_user_client/realname/index.js +45 -0
  489. package/demo/app/user/plugin/main/api_user_client/realname/param.json +74 -0
  490. package/demo/app/user/plugin/main/api_user_client/servicer/api.json +29 -0
  491. package/demo/app/user/plugin/main/api_user_client/servicer/index.js +19 -0
  492. package/demo/app/user/plugin/main/api_user_client/servicer/param.json +41 -0
  493. package/demo/app/user/plugin/main/api_user_client/servicer/sql.json +113 -0
  494. package/demo/app/user/plugin/main/api_user_client/set_address/api.json +37 -0
  495. package/demo/app/user/plugin/main/api_user_client/set_address/index.js +98 -0
  496. package/demo/app/user/plugin/main/api_user_client/set_address/param.json +165 -0
  497. package/demo/app/user/plugin/main/api_user_client/set_avatar/api.json +35 -0
  498. package/demo/app/user/plugin/main/api_user_client/set_avatar/index.js +77 -0
  499. package/demo/app/user/plugin/main/api_user_client/set_info/api.json +35 -0
  500. package/demo/app/user/plugin/main/api_user_client/set_info/index.js +44 -0
  501. package/demo/app/user/plugin/main/api_user_client/set_nickname/api.json +35 -0
  502. package/demo/app/user/plugin/main/api_user_client/set_nickname/index.js +46 -0
  503. package/demo/app/user/plugin/main/api_user_client/set_pay_password/api.json +21 -0
  504. package/demo/app/user/plugin/main/api_user_client/set_pay_password/index.js +64 -0
  505. package/demo/app/user/plugin/main/api_user_client/sign_address/api.json +39 -0
  506. package/demo/app/user/plugin/main/api_user_client/sign_address/index.js +114 -0
  507. package/demo/app/user/plugin/main/api_user_client/sign_address/param.json +130 -0
  508. package/demo/app/user/plugin/main/api_user_client/sign_address/sql.json +70 -0
  509. package/demo/app/user/plugin/main/api_user_client/sign_auto/api.json +29 -0
  510. package/demo/app/user/plugin/main/api_user_client/sign_auto/index.js +141 -0
  511. package/demo/app/user/plugin/main/api_user_client/sign_auto/param.json +42 -0
  512. package/demo/app/user/plugin/main/api_user_client/sign_in/api.json +11 -0
  513. package/demo/app/user/plugin/main/api_user_client/sign_in/index.js +274 -0
  514. package/demo/app/user/plugin/main/api_user_client/sign_in/param.json +125 -0
  515. package/demo/app/user/plugin/main/api_user_client/sign_in/state.js +37 -0
  516. package/demo/app/user/plugin/main/api_user_client/sign_out/api.json +9 -0
  517. package/demo/app/user/plugin/main/api_user_client/sign_out/index.js +28 -0
  518. package/demo/app/user/plugin/main/api_user_client/sign_up/api.json +12 -0
  519. package/demo/app/user/plugin/main/api_user_client/sign_up/index.js +189 -0
  520. package/demo/app/user/plugin/main/api_user_client/sign_up/param.json +83 -0
  521. package/demo/app/user/plugin/main/api_user_client/sign_up_in/api.json +37 -0
  522. package/demo/app/user/plugin/main/api_user_client/sign_up_in/index.js +137 -0
  523. package/demo/app/user/plugin/main/api_user_client/sign_up_in/param.json +33 -0
  524. package/demo/app/user/plugin/main/api_user_client/state/api.json +9 -0
  525. package/demo/app/user/plugin/main/api_user_client/state/index.js +19 -0
  526. package/demo/app/user/plugin/main/api_user_client/token/api.json +25 -0
  527. package/demo/app/user/plugin/main/api_user_client/token/index.js +20 -0
  528. package/demo/app/user/plugin/main/api_user_client/token/param.json +16 -0
  529. package/demo/app/user/plugin/main/api_user_client/unsubscribe/api.json +29 -0
  530. package/demo/app/user/plugin/main/api_user_client/unsubscribe/index.js +91 -0
  531. package/demo/app/user/plugin/main/api_user_client/unsubscribe/param.json +71 -0
  532. package/demo/app/user/plugin/main/api_user_client/yun_avatar/api.json +31 -0
  533. package/demo/app/user/plugin/main/api_user_client/yun_avatar/index.js +56 -0
  534. package/demo/app/user/plugin/main/api_user_client/yun_avatar/param.json +50 -0
  535. package/demo/app/user/plugin/main/api_user_manage/account_base/api.json +37 -0
  536. package/demo/app/user/plugin/main/api_user_manage/account_base/index.js +40 -0
  537. package/demo/app/user/plugin/main/api_user_manage/account_base/param.json +130 -0
  538. package/demo/app/user/plugin/main/api_user_manage/invitation_code/api.json +37 -0
  539. package/demo/app/user/plugin/main/api_user_manage/invitation_code/index.js +106 -0
  540. package/demo/app/user/plugin/main/api_user_manage/invitation_code/param.json +130 -0
  541. package/demo/app/user/plugin/main/api_user_manage/update_team/api.json +35 -0
  542. package/demo/app/user/plugin/main/api_user_manage/update_team/index.js +218 -0
  543. package/demo/app/user/plugin/main/api_user_manage/update_team/param.json +130 -0
  544. package/demo/app/user/plugin/main/api_user_web/avatar/api.json +28 -0
  545. package/demo/app/user/plugin/main/api_user_web/avatar/index.js +51 -0
  546. package/demo/app/user/plugin/main/api_user_web/login/api.json +37 -0
  547. package/demo/app/user/plugin/main/api_user_web/login/index.js +12 -0
  548. package/demo/app/user/plugin/main/api_user_web/root/api.json +38 -0
  549. package/demo/app/user/plugin/main/api_user_web/root/index.js +67 -0
  550. package/demo/app/user/plugin/main/index.js +144 -0
  551. package/demo/app/user/plugin/main/plugin.json +20 -0
  552. package/demo/app/user/plugin/server/api_user_client/address/api.json +16 -0
  553. package/demo/app/user/plugin/server/api_user_client/address/index.js +79 -0
  554. package/demo/app/user/plugin/server/api_user_client/address/param.json +288 -0
  555. package/demo/app/user/plugin/server/api_user_client/address/sql.json +56 -0
  556. package/demo/app/user/plugin/server/api_user_client/count/api.json +12 -0
  557. package/demo/app/user/plugin/server/api_user_client/count/param.json +646 -0
  558. package/demo/app/user/plugin/server/api_user_client/count/sql.json +82 -0
  559. package/demo/app/user/plugin/server/api_user_client/info/api.json +16 -0
  560. package/demo/app/user/plugin/server/api_user_client/info/index.js +42 -0
  561. package/demo/app/user/plugin/server/api_user_client/info/param.json +531 -0
  562. package/demo/app/user/plugin/server/api_user_client/info/sql.json +84 -0
  563. package/demo/app/user/plugin/server/api_user_client/message/api.json +12 -0
  564. package/demo/app/user/plugin/server/api_user_client/message/param.json +366 -0
  565. package/demo/app/user/plugin/server/api_user_client/message/sql.json +88 -0
  566. package/demo/app/user/plugin/server/api_user_client/nation/api.json +12 -0
  567. package/demo/app/user/plugin/server/api_user_client/nation/param.json +74 -0
  568. package/demo/app/user/plugin/server/api_user_client/nation/sql.json +18 -0
  569. package/demo/app/user/plugin/server/api_user_manage/account/api.json +18 -0
  570. package/demo/app/user/plugin/server/api_user_manage/account/param.json +620 -0
  571. package/demo/app/user/plugin/server/api_user_manage/account/sql.json +105 -0
  572. package/demo/app/user/plugin/server/api_user_manage/address/api.json +19 -0
  573. package/demo/app/user/plugin/server/api_user_manage/address/index.js +57 -0
  574. package/demo/app/user/plugin/server/api_user_manage/address/param.json +288 -0
  575. package/demo/app/user/plugin/server/api_user_manage/address/sql.json +44 -0
  576. package/demo/app/user/plugin/server/api_user_manage/admin/api.json +18 -0
  577. package/demo/app/user/plugin/server/api_user_manage/admin/param.json +147 -0
  578. package/demo/app/user/plugin/server/api_user_manage/admin/sql.json +24 -0
  579. package/demo/app/user/plugin/server/api_user_manage/admin_log/api.json +18 -0
  580. package/demo/app/user/plugin/server/api_user_manage/admin_log/param.json +226 -0
  581. package/demo/app/user/plugin/server/api_user_manage/admin_log/sql.json +32 -0
  582. package/demo/app/user/plugin/server/api_user_manage/count/api.json +18 -0
  583. package/demo/app/user/plugin/server/api_user_manage/count/param.json +646 -0
  584. package/demo/app/user/plugin/server/api_user_manage/count/sql.json +72 -0
  585. package/demo/app/user/plugin/server/api_user_manage/group/api.json +18 -0
  586. package/demo/app/user/plugin/server/api_user_manage/group/param.json +187 -0
  587. package/demo/app/user/plugin/server/api_user_manage/group/sql.json +39 -0
  588. package/demo/app/user/plugin/server/api_user_manage/group_log/api.json +18 -0
  589. package/demo/app/user/plugin/server/api_user_manage/group_log/param.json +235 -0
  590. package/demo/app/user/plugin/server/api_user_manage/group_log/sql.json +32 -0
  591. package/demo/app/user/plugin/server/api_user_manage/info/api.json +18 -0
  592. package/demo/app/user/plugin/server/api_user_manage/info/param.json +531 -0
  593. package/demo/app/user/plugin/server/api_user_manage/info/sql.json +71 -0
  594. package/demo/app/user/plugin/server/api_user_manage/message/api.json +18 -0
  595. package/demo/app/user/plugin/server/api_user_manage/message/param.json +366 -0
  596. package/demo/app/user/plugin/server/api_user_manage/message/sql.json +75 -0
  597. package/demo/app/user/plugin/server/api_user_manage/nation/api.json +18 -0
  598. package/demo/app/user/plugin/server/api_user_manage/nation/param.json +74 -0
  599. package/demo/app/user/plugin/server/api_user_manage/nation/sql.json +16 -0
  600. package/demo/app/user/plugin/server/api_user_manage/state/api.json +18 -0
  601. package/demo/app/user/plugin/server/api_user_manage/state/param.json +98 -0
  602. package/demo/app/user/plugin/server/api_user_manage/state/sql.json +29 -0
  603. package/demo/app/user/plugin/server/db/account.db.json +460 -0
  604. package/demo/app/user/plugin/server/db/address.db.json +262 -0
  605. package/demo/app/user/plugin/server/db/admin.db.json +117 -0
  606. package/demo/app/user/plugin/server/db/admin_log.db.json +189 -0
  607. package/demo/app/user/plugin/server/db/count.db.json +298 -0
  608. package/demo/app/user/plugin/server/db/group.db.json +117 -0
  609. package/demo/app/user/plugin/server/db/group_log.db.json +190 -0
  610. package/demo/app/user/plugin/server/db/info.db.json +496 -0
  611. package/demo/app/user/plugin/server/db/message.db.json +262 -0
  612. package/demo/app/user/plugin/server/db/nation.db.json +46 -0
  613. package/demo/app/user/plugin/server/db/state.db.json +64 -0
  614. package/demo/app/user/static/img/logo.png +0 -0
  615. package/demo/app/user/static/static.js +28 -0
  616. package/demo/app/user/static/static.json +20 -0
  617. package/demo/app/ws/app.js +122 -0
  618. package/demo/app/ws/app.json +11 -0
  619. package/demo/app/ws/event_api/client/event.json +10 -0
  620. package/demo/app/ws/event_api/client/main.js +17 -0
  621. package/demo/app/ws/socket/ws/index.js +43 -0
  622. package/demo/app/ws/socket/ws/socket.json +14 -0
  623. package/demo/config/development.json +109 -0
  624. package/demo/config/face.sql +3824 -0
  625. package/demo/config/local.json +111 -0
  626. package/demo/config/lock.cache +5 -0
  627. package/demo/config/test.json +109 -0
  628. package/demo/config/tpl.json +107 -0
  629. package/demo/index.js +30 -0
  630. package/demo/static/file/image/1.png +0 -0
  631. package/package.json +1 -1
@@ -0,0 +1,796 @@
1
+ {
2
+ "name": "sys_project",
3
+ "title": "",
4
+ "add": {
5
+ "body": [
6
+ "available",
7
+ "show",
8
+ "user_id",
9
+ "organization",
10
+ "place",
11
+ "admins",
12
+ "devices",
13
+ "period",
14
+ "upload_pic",
15
+ "save_outboard",
16
+ "can_sign",
17
+ "auto_sign",
18
+ "peoples",
19
+ "record_days",
20
+ "password",
21
+ "period_sign",
22
+ "scene",
23
+ "import_tpl",
24
+ "power_id",
25
+ "access_id",
26
+ "attendance_rule",
27
+ "state",
28
+ "need_not_member",
29
+ "need_not_visitor",
30
+ "ad",
31
+ "cloud_check_limit",
32
+ "cloud_check_now"
33
+ ],
34
+ "body_required": [
35
+ "name",
36
+ "members"
37
+ ]
38
+ },
39
+ "del": {
40
+ "query": [],
41
+ "query_required": [
42
+ "project_id"
43
+ ]
44
+ },
45
+ "set": {
46
+ "query": [
47
+ "project_id",
48
+ "available",
49
+ "name",
50
+ "show",
51
+ "period_min",
52
+ "period_max",
53
+ "upload_pic",
54
+ "save_outboard",
55
+ "can_sign",
56
+ "auto_sign",
57
+ "peoples_min",
58
+ "peoples_max",
59
+ "record_days_min",
60
+ "record_days_max",
61
+ "period_sign_min",
62
+ "period_sign_max",
63
+ "state_min",
64
+ "state_max",
65
+ "need_not_member",
66
+ "need_not_visitor",
67
+ "ad",
68
+ "cloud_check_limit_min",
69
+ "cloud_check_limit_max",
70
+ "cloud_check_now_min",
71
+ "cloud_check_now_max",
72
+ "keyword"
73
+ ],
74
+ "query_required": [],
75
+ "body": [
76
+ "available",
77
+ "name",
78
+ "show",
79
+ "user_id",
80
+ "organization",
81
+ "place",
82
+ "admins",
83
+ "members",
84
+ "devices",
85
+ "period",
86
+ "period_add",
87
+ "upload_pic",
88
+ "save_outboard",
89
+ "can_sign",
90
+ "auto_sign",
91
+ "peoples",
92
+ "peoples_add",
93
+ "record_days",
94
+ "record_days_add",
95
+ "password",
96
+ "period_sign",
97
+ "period_sign_add",
98
+ "scene",
99
+ "import_tpl",
100
+ "power_id",
101
+ "access_id",
102
+ "attendance_rule",
103
+ "state",
104
+ "state_add",
105
+ "need_not_member",
106
+ "need_not_visitor",
107
+ "ad",
108
+ "cloud_check_limit",
109
+ "cloud_check_limit_add",
110
+ "cloud_check_now",
111
+ "cloud_check_now_add"
112
+ ],
113
+ "body_required": [],
114
+ "body_not": []
115
+ },
116
+ "get": {
117
+ "query": [
118
+ "project_id",
119
+ "available",
120
+ "name",
121
+ "show",
122
+ "user_id",
123
+ "time_create_min",
124
+ "time_create_max",
125
+ "time_update_min",
126
+ "time_update_max",
127
+ "period_min",
128
+ "period_max",
129
+ "time_valid_min",
130
+ "time_valid_max",
131
+ "upload_pic",
132
+ "save_outboard",
133
+ "can_sign",
134
+ "auto_sign",
135
+ "peoples_min",
136
+ "peoples_max",
137
+ "record_days_min",
138
+ "record_days_max",
139
+ "period_sign_min",
140
+ "period_sign_max",
141
+ "time_valid_sign_min",
142
+ "time_valid_sign_max",
143
+ "power_id",
144
+ "access_id",
145
+ "state_min",
146
+ "state_max",
147
+ "need_not_member",
148
+ "need_not_visitor",
149
+ "ad",
150
+ "cloud_check_limit_min",
151
+ "cloud_check_limit_max",
152
+ "cloud_check_now_min",
153
+ "cloud_check_now_max",
154
+ "keyword"
155
+ ],
156
+ "query_required": []
157
+ },
158
+ "get_obj": {
159
+ "query_required": [
160
+ "project_id"
161
+ ]
162
+ },
163
+ "list": [
164
+ {
165
+ "name": "project_id",
166
+ "title": "项目ID",
167
+ "description": "",
168
+ "type": "number",
169
+ "dataType": "int",
170
+ "default": "0",
171
+ "number": {
172
+ "max": 2147483647
173
+ }
174
+ },
175
+ {
176
+ "name": "available",
177
+ "title": "是否可用",
178
+ "description": "(0不可用|1可用)",
179
+ "type": "number",
180
+ "dataType": "tinyint",
181
+ "default": "1",
182
+ "number": {
183
+ "max": 1
184
+ }
185
+ },
186
+ {
187
+ "name": "name",
188
+ "title": "项目名称",
189
+ "description": "",
190
+ "type": "string",
191
+ "dataType": "varchar",
192
+ "default": "",
193
+ "string": {
194
+ "max": 64,
195
+ "notEmpty": true
196
+ }
197
+ },
198
+ {
199
+ "name": "show",
200
+ "title": "是否公共显示",
201
+ "description": "",
202
+ "type": "number",
203
+ "dataType": "tinyint",
204
+ "default": "1",
205
+ "number": {
206
+ "max": 1
207
+ }
208
+ },
209
+ {
210
+ "name": "user_id",
211
+ "title": "创建者ID",
212
+ "description": "(user_account)",
213
+ "type": "number",
214
+ "dataType": "int",
215
+ "default": "0",
216
+ "number": {
217
+ "max": 2147483647
218
+ }
219
+ },
220
+ {
221
+ "name": "organization",
222
+ "title": "组织机构",
223
+ "description": "",
224
+ "type": "string",
225
+ "dataType": "varchar",
226
+ "default": null,
227
+ "string": {
228
+ "max": 16
229
+ }
230
+ },
231
+ {
232
+ "name": "place",
233
+ "title": "使用场所",
234
+ "description": "",
235
+ "type": "string",
236
+ "dataType": "varchar",
237
+ "default": null,
238
+ "string": {
239
+ "max": 255
240
+ }
241
+ },
242
+ {
243
+ "name": "admins",
244
+ "title": "管理者",
245
+ "description": "",
246
+ "type": "string",
247
+ "dataType": "text",
248
+ "default": null,
249
+ "string": {}
250
+ },
251
+ {
252
+ "name": "members",
253
+ "title": "加入的成员",
254
+ "description": "",
255
+ "type": "string",
256
+ "dataType": "longtext",
257
+ "default": "0",
258
+ "string": {
259
+ "notEmpty": true
260
+ }
261
+ },
262
+ {
263
+ "name": "devices",
264
+ "title": "加入的设备",
265
+ "description": "",
266
+ "type": "string",
267
+ "dataType": "text",
268
+ "default": null,
269
+ "string": {}
270
+ },
271
+ {
272
+ "name": "time_create",
273
+ "title": "创建时间",
274
+ "description": "用来查看创建时间",
275
+ "type": "string",
276
+ "dataType": "datetime",
277
+ "default": "",
278
+ "string": {
279
+ "notEmpty": true,
280
+ "format": "datetime"
281
+ }
282
+ },
283
+ {
284
+ "name": "time_create_min",
285
+ "title": "创建时间——开始时间",
286
+ "description": "用来查看创建时间",
287
+ "type": "string",
288
+ "dataType": "datetime",
289
+ "default": "",
290
+ "string": {
291
+ "notEmpty": true,
292
+ "format": "datetime"
293
+ }
294
+ },
295
+ {
296
+ "name": "time_create_max",
297
+ "title": "创建时间——结束时间",
298
+ "description": "用来查看创建时间",
299
+ "type": "string",
300
+ "dataType": "datetime",
301
+ "default": "",
302
+ "string": {
303
+ "notEmpty": true,
304
+ "format": "datetime"
305
+ }
306
+ },
307
+ {
308
+ "name": "time_update",
309
+ "title": "更新时间",
310
+ "description": "用来判断最近是否更新",
311
+ "type": "string",
312
+ "dataType": "timestamp",
313
+ "default": "",
314
+ "string": {
315
+ "notEmpty": true,
316
+ "format": "datetime"
317
+ }
318
+ },
319
+ {
320
+ "name": "time_update_min",
321
+ "title": "更新时间——开始时间",
322
+ "description": "用来判断最近是否更新",
323
+ "type": "string",
324
+ "dataType": "timestamp",
325
+ "default": "",
326
+ "string": {
327
+ "notEmpty": true,
328
+ "format": "datetime"
329
+ }
330
+ },
331
+ {
332
+ "name": "time_update_max",
333
+ "title": "更新时间——结束时间",
334
+ "description": "用来判断最近是否更新",
335
+ "type": "string",
336
+ "dataType": "timestamp",
337
+ "default": "",
338
+ "string": {
339
+ "notEmpty": true,
340
+ "format": "datetime"
341
+ }
342
+ },
343
+ {
344
+ "name": "period",
345
+ "title": "有效时长",
346
+ "description": "用来判断应用使用期限",
347
+ "type": "number",
348
+ "dataType": "int",
349
+ "default": "0",
350
+ "number": {
351
+ "max": 2147483647
352
+ }
353
+ },
354
+ {
355
+ "name": "period_min",
356
+ "title": "有效时长——最小值",
357
+ "description": "用来判断应用使用期限",
358
+ "type": "number",
359
+ "dataType": "int",
360
+ "default": "0",
361
+ "number": {
362
+ "max": 2147483647
363
+ }
364
+ },
365
+ {
366
+ "name": "period_max",
367
+ "title": "有效时长——最大值",
368
+ "description": "用来判断应用使用期限",
369
+ "type": "number",
370
+ "dataType": "int",
371
+ "default": "0",
372
+ "number": {
373
+ "max": 2147483647
374
+ }
375
+ },
376
+ {
377
+ "name": "time_valid",
378
+ "title": "有效期至",
379
+ "description": "用来判断应用是否到期",
380
+ "type": "string",
381
+ "dataType": "date",
382
+ "default": "",
383
+ "string": {
384
+ "notEmpty": true,
385
+ "format": "date"
386
+ }
387
+ },
388
+ {
389
+ "name": "time_valid_min",
390
+ "title": "有效期至——开始时间",
391
+ "description": "用来判断应用是否到期",
392
+ "type": "string",
393
+ "dataType": "date",
394
+ "default": "",
395
+ "string": {
396
+ "notEmpty": true,
397
+ "format": "date"
398
+ }
399
+ },
400
+ {
401
+ "name": "time_valid_max",
402
+ "title": "有效期至——结束时间",
403
+ "description": "用来判断应用是否到期",
404
+ "type": "string",
405
+ "dataType": "date",
406
+ "default": "",
407
+ "string": {
408
+ "notEmpty": true,
409
+ "format": "date"
410
+ }
411
+ },
412
+ {
413
+ "name": "upload_pic",
414
+ "title": "上传抓拍",
415
+ "description": "是否上传抓拍照片(0否|1是)",
416
+ "type": "number",
417
+ "dataType": "tinyint",
418
+ "default": "0",
419
+ "number": {
420
+ "max": 1
421
+ }
422
+ },
423
+ {
424
+ "name": "save_outboard",
425
+ "title": "保存外人记录",
426
+ "description": "(0否|1是)",
427
+ "type": "number",
428
+ "dataType": "tinyint",
429
+ "default": "0",
430
+ "number": {
431
+ "max": 1
432
+ }
433
+ },
434
+ {
435
+ "name": "can_sign",
436
+ "title": "移动考勤",
437
+ "description": "是否支持移动考勤(0否|1是)",
438
+ "type": "number",
439
+ "dataType": "tinyint",
440
+ "default": "0",
441
+ "number": {
442
+ "max": 1
443
+ }
444
+ },
445
+ {
446
+ "name": "auto_sign",
447
+ "title": "自动打卡",
448
+ "description": "(0否|1是)",
449
+ "type": "number",
450
+ "dataType": "tinyint",
451
+ "default": "0",
452
+ "number": {
453
+ "max": 1
454
+ }
455
+ },
456
+ {
457
+ "name": "peoples",
458
+ "title": "录入人数上限",
459
+ "description": "最多可以录入多少人",
460
+ "type": "number",
461
+ "dataType": "smallint",
462
+ "default": "10000",
463
+ "number": {
464
+ "max": 32767
465
+ }
466
+ },
467
+ {
468
+ "name": "peoples_min",
469
+ "title": "录入人数上限——最小值",
470
+ "description": "最多可以录入多少人",
471
+ "type": "number",
472
+ "dataType": "smallint",
473
+ "default": "10000",
474
+ "number": {
475
+ "max": 32767
476
+ }
477
+ },
478
+ {
479
+ "name": "peoples_max",
480
+ "title": "录入人数上限——最大值",
481
+ "description": "最多可以录入多少人",
482
+ "type": "number",
483
+ "dataType": "smallint",
484
+ "default": "10000",
485
+ "number": {
486
+ "max": 32767
487
+ }
488
+ },
489
+ {
490
+ "name": "record_days",
491
+ "title": "记录保留时长",
492
+ "description": "默认365天",
493
+ "type": "number",
494
+ "dataType": "smallint",
495
+ "default": "365",
496
+ "number": {
497
+ "max": 32767
498
+ }
499
+ },
500
+ {
501
+ "name": "record_days_min",
502
+ "title": "记录保留时长——最小值",
503
+ "description": "默认365天",
504
+ "type": "number",
505
+ "dataType": "smallint",
506
+ "default": "365",
507
+ "number": {
508
+ "max": 32767
509
+ }
510
+ },
511
+ {
512
+ "name": "record_days_max",
513
+ "title": "记录保留时长——最大值",
514
+ "description": "默认365天",
515
+ "type": "number",
516
+ "dataType": "smallint",
517
+ "default": "365",
518
+ "number": {
519
+ "max": 32767
520
+ }
521
+ },
522
+ {
523
+ "name": "password",
524
+ "title": "密码",
525
+ "description": "机构登录所需的密码,由6-16位数字或英文组成",
526
+ "type": "string",
527
+ "dataType": "varchar",
528
+ "default": "",
529
+ "string": {
530
+ "max": 64
531
+ }
532
+ },
533
+ {
534
+ "name": "period_sign",
535
+ "title": "考勤期至",
536
+ "description": "用来判断考勤使用期限",
537
+ "type": "number",
538
+ "dataType": "int",
539
+ "default": "0",
540
+ "number": {
541
+ "max": 2147483647
542
+ }
543
+ },
544
+ {
545
+ "name": "period_sign_min",
546
+ "title": "考勤期至——最小值",
547
+ "description": "用来判断考勤使用期限",
548
+ "type": "number",
549
+ "dataType": "int",
550
+ "default": "0",
551
+ "number": {
552
+ "max": 2147483647
553
+ }
554
+ },
555
+ {
556
+ "name": "period_sign_max",
557
+ "title": "考勤期至——最大值",
558
+ "description": "用来判断考勤使用期限",
559
+ "type": "number",
560
+ "dataType": "int",
561
+ "default": "0",
562
+ "number": {
563
+ "max": 2147483647
564
+ }
565
+ },
566
+ {
567
+ "name": "time_valid_sign",
568
+ "title": "考勤剩余",
569
+ "description": "用来判断考勤功能是否到期",
570
+ "type": "string",
571
+ "dataType": "date",
572
+ "default": "",
573
+ "string": {
574
+ "notEmpty": true,
575
+ "format": "date"
576
+ }
577
+ },
578
+ {
579
+ "name": "time_valid_sign_min",
580
+ "title": "考勤剩余——开始时间",
581
+ "description": "用来判断考勤功能是否到期",
582
+ "type": "string",
583
+ "dataType": "date",
584
+ "default": "",
585
+ "string": {
586
+ "notEmpty": true,
587
+ "format": "date"
588
+ }
589
+ },
590
+ {
591
+ "name": "time_valid_sign_max",
592
+ "title": "考勤剩余——结束时间",
593
+ "description": "用来判断考勤功能是否到期",
594
+ "type": "string",
595
+ "dataType": "date",
596
+ "default": "",
597
+ "string": {
598
+ "notEmpty": true,
599
+ "format": "date"
600
+ }
601
+ },
602
+ {
603
+ "name": "scene",
604
+ "title": "使用场景",
605
+ "description": "(工地|工厂|公司|学校|小区)",
606
+ "type": "string",
607
+ "dataType": "varchar",
608
+ "default": "企业",
609
+ "string": {
610
+ "max": 6
611
+ }
612
+ },
613
+ {
614
+ "name": "import_tpl",
615
+ "title": "导入模板",
616
+ "description": "用于导入数据时所需字段",
617
+ "type": "string",
618
+ "dataType": "varchar",
619
+ "default": "姓名-手机号-部门-班组-职业",
620
+ "string": {
621
+ "max": 255
622
+ }
623
+ },
624
+ {
625
+ "name": "power_id",
626
+ "title": "默认权限",
627
+ "description": "(face_power)",
628
+ "type": "number",
629
+ "dataType": "int",
630
+ "default": "0",
631
+ "number": {
632
+ "max": 2147483647
633
+ }
634
+ },
635
+ {
636
+ "name": "access_id",
637
+ "title": "默认门禁",
638
+ "description": "(face_access)",
639
+ "type": "number",
640
+ "dataType": "int",
641
+ "default": "0",
642
+ "number": {
643
+ "max": 2147483647
644
+ }
645
+ },
646
+ {
647
+ "name": "attendance_rule",
648
+ "title": "考勤规则",
649
+ "description": "",
650
+ "type": "string",
651
+ "dataType": "text",
652
+ "default": null,
653
+ "string": {}
654
+ },
655
+ {
656
+ "name": "state",
657
+ "title": "审核状态",
658
+ "description": "(1待审核|2已拒绝|3已通过|4黑名单)",
659
+ "type": "number",
660
+ "dataType": "smallint",
661
+ "default": "3",
662
+ "number": {
663
+ "max": 10
664
+ }
665
+ },
666
+ {
667
+ "name": "state_min",
668
+ "title": "审核状态——最小值",
669
+ "description": "(1待审核|2已拒绝|3已通过|4黑名单)",
670
+ "type": "number",
671
+ "dataType": "smallint",
672
+ "default": "3",
673
+ "number": {
674
+ "max": 10
675
+ }
676
+ },
677
+ {
678
+ "name": "state_max",
679
+ "title": "审核状态——最大值",
680
+ "description": "(1待审核|2已拒绝|3已通过|4黑名单)",
681
+ "type": "number",
682
+ "dataType": "smallint",
683
+ "default": "3",
684
+ "number": {
685
+ "max": 10
686
+ }
687
+ },
688
+ {
689
+ "name": "need_not_member",
690
+ "title": "无需审核成员",
691
+ "description": "开启后无需审核成员,直接通过",
692
+ "type": "number",
693
+ "dataType": "tinyint",
694
+ "default": "0",
695
+ "number": {
696
+ "max": 1
697
+ }
698
+ },
699
+ {
700
+ "name": "need_not_visitor",
701
+ "title": "无需审核访客",
702
+ "description": "开启后无需审核访客,直接通过",
703
+ "type": "number",
704
+ "dataType": "tinyint",
705
+ "default": "0",
706
+ "number": {
707
+ "max": 1
708
+ }
709
+ },
710
+ {
711
+ "name": "ad",
712
+ "title": "是否开启广告",
713
+ "description": "(0否|1是)",
714
+ "type": "number",
715
+ "dataType": "tinyint",
716
+ "default": "0",
717
+ "number": {
718
+ "max": 1
719
+ }
720
+ },
721
+ {
722
+ "name": "cloud_check_limit",
723
+ "title": "云检测上限",
724
+ "description": "限制最多使用云检测身份证真实性的使用次数",
725
+ "type": "number",
726
+ "dataType": "int",
727
+ "default": "0",
728
+ "number": {
729
+ "max": 2147483647
730
+ }
731
+ },
732
+ {
733
+ "name": "cloud_check_limit_min",
734
+ "title": "云检测上限——最小值",
735
+ "description": "限制最多使用云检测身份证真实性的使用次数",
736
+ "type": "number",
737
+ "dataType": "int",
738
+ "default": "0",
739
+ "number": {
740
+ "max": 2147483647
741
+ }
742
+ },
743
+ {
744
+ "name": "cloud_check_limit_max",
745
+ "title": "云检测上限——最大值",
746
+ "description": "限制最多使用云检测身份证真实性的使用次数",
747
+ "type": "number",
748
+ "dataType": "int",
749
+ "default": "0",
750
+ "number": {
751
+ "max": 2147483647
752
+ }
753
+ },
754
+ {
755
+ "name": "cloud_check_now",
756
+ "title": "云检测使用次数",
757
+ "description": "当前已使用云检测的次数",
758
+ "type": "number",
759
+ "dataType": "int",
760
+ "default": "0",
761
+ "number": {
762
+ "max": 2147483647
763
+ }
764
+ },
765
+ {
766
+ "name": "cloud_check_now_min",
767
+ "title": "云检测使用次数——最小值",
768
+ "description": "当前已使用云检测的次数",
769
+ "type": "number",
770
+ "dataType": "int",
771
+ "default": "0",
772
+ "number": {
773
+ "max": 2147483647
774
+ }
775
+ },
776
+ {
777
+ "name": "cloud_check_now_max",
778
+ "title": "云检测使用次数——最大值",
779
+ "description": "当前已使用云检测的次数",
780
+ "type": "number",
781
+ "dataType": "int",
782
+ "default": "0",
783
+ "number": {
784
+ "max": 2147483647
785
+ }
786
+ },
787
+ {
788
+ "name": "keyword",
789
+ "title": "关键词",
790
+ "description": "用于搜索项目名称(name)",
791
+ "type": "string",
792
+ "dataType": "varchar",
793
+ "string": {}
794
+ }
795
+ ]
796
+ }