@ningboyz/types 1.2.147 → 1.2.148

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 (1015) hide show
  1. package/.prettierignore +0 -0
  2. package/.prettierrc +15 -0
  3. package/eslint.config.js +30 -0
  4. package/package.json +3 -18
  5. package/src/antv/IAntvCnfgResponse.ts +69 -0
  6. package/src/antv/IAntvMainResponse.ts +67 -0
  7. package/src/antv/IAntvParaResponse.ts +49 -0
  8. package/src/antv/index.ts +5 -0
  9. package/src/app/ITab.ts +57 -0
  10. package/src/app/IUserData.ts +7 -0
  11. package/src/app/index.ts +4 -0
  12. package/src/base/IBaseResponse.ts +25 -0
  13. package/src/bill/IBillCnfgResponse.ts +113 -0
  14. package/src/bill/IBillMainResponse.ts +284 -0
  15. package/src/bill/index.ts +4 -0
  16. package/src/card/ICardBookResponse.ts +123 -0
  17. package/src/card/ICardDataResponse.ts +249 -0
  18. package/src/card/ICardFromResponse.ts +68 -0
  19. package/src/card/ICardFwczResponse.ts +195 -0
  20. package/src/card/ICardHyhbBillResponse.ts +95 -0
  21. package/src/card/ICardHyhbResponse.ts +85 -0
  22. package/src/card/ICardMainFindResponse.ts +95 -0
  23. package/src/card/ICardMainResponse.ts +762 -0
  24. package/src/card/ICardRoomResponse.ts +176 -0
  25. package/src/card/IGblbResponse.ts +133 -0
  26. package/src/card/IP4pzResponse.ts +68 -0
  27. package/src/card/ISyszclbgblbResponse.ts +67 -0
  28. package/src/card/IZcbdResponse.ts +205 -0
  29. package/src/card/IZccfResponse.ts +232 -0
  30. package/src/card/IZcczResponse.ts +222 -0
  31. package/src/card/IZcdbResponse.ts +237 -0
  32. package/src/card/IZclbResponse.ts +138 -0
  33. package/src/card/IZczjPropResponse.ts +94 -0
  34. package/src/card/IZczjResponse.ts +121 -0
  35. package/src/card/index.ts +62 -0
  36. package/src/cggz/ICggzBillResponse.ts +69 -0
  37. package/src/cggz/ICggzMainResponse.ts +188 -0
  38. package/src/cggz/index.ts +4 -0
  39. package/src/clas/IClasAttrResponse.ts +69 -0
  40. package/src/clas/IClasMainResponse.ts +67 -0
  41. package/src/clas/readme.md +1 -0
  42. package/src/conf/ICnfgMainResponse.ts +83 -0
  43. package/src/conf/IConfig.ts +50 -0
  44. package/src/conf/index.ts +3 -0
  45. package/src/const/const_align.ts +15 -0
  46. package/src/const/const_audit.ts +34 -0
  47. package/src/const/const_bizCode.ts +3 -0
  48. package/src/const/const_card.ts +6 -0
  49. package/src/const/const_clas.ts +72 -0
  50. package/src/const/const_cnfg.ts +92 -0
  51. package/src/const/const_data_from.ts +14 -0
  52. package/src/const/const_elem.ts +99 -0
  53. package/src/const/const_flow.ts +7 -0
  54. package/src/const/const_gams_mode.ts +5 -0
  55. package/src/const/const_glpz_mode.ts +2 -0
  56. package/src/const/const_gzlm.ts +39 -0
  57. package/src/const/const_hznk.ts +19 -0
  58. package/src/const/const_hznt.ts +71 -0
  59. package/src/const/const_module.ts +112 -0
  60. package/src/const/const_myoa.ts +79 -0
  61. package/src/const/const_p4pt.ts +8 -0
  62. package/src/const/const_part.ts +25 -0
  63. package/src/const/const_stat.ts +400 -0
  64. package/src/const/const_take_type.ts +9 -0
  65. package/src/const/const_todo.ts +28 -0
  66. package/src/const/const_travel.ts +8 -0
  67. package/src/const/const_type.ts +66 -0
  68. package/src/const/const_type_name.ts +242 -0
  69. package/src/const/const_user.ts +2 -0
  70. package/src/const/const_user_acno.ts +6 -0
  71. package/src/const/const_wldy_item_type.ts +4 -0
  72. package/src/const/const_wtui_item_type.ts +24 -0
  73. package/src/const/const_yiha.ts +32 -0
  74. package/src/const/const_zbzd.ts +10 -0
  75. package/src/const/index.ts +60 -0
  76. package/src/core/ICoreValidResponse.ts +21 -0
  77. package/src/core/IDeptLiteResponse.ts +43 -0
  78. package/src/core/IDeptResponse.ts +171 -0
  79. package/src/core/IDictResponse.ts +183 -0
  80. package/src/core/IDictResponseConf.ts +36 -0
  81. package/src/core/IDictResponseDictPara.ts +42 -0
  82. package/src/core/IEnvrResponse.ts +95 -0
  83. package/src/core/ILaidResponse.ts +161 -0
  84. package/src/core/IPartResponse.ts +120 -0
  85. package/src/core/IPathResponse.ts +133 -0
  86. package/src/core/ISourceItem.ts +55 -0
  87. package/src/core/IStypResponse.ts +45 -0
  88. package/src/core/ISysClasResponse.ts +57 -0
  89. package/src/core/ISysMenuWithCoreResponse.ts +152 -0
  90. package/src/core/ISysMenuWithCoreResponseMenuPara.ts +3 -0
  91. package/src/core/ISysMenuWithExpdResponse.ts +320 -0
  92. package/src/core/ISysTravelResponse.ts +133 -0
  93. package/src/core/ITypeResponse.ts +127 -0
  94. package/src/core/IUnitBindResponse.ts +62 -0
  95. package/src/core/IUnitResponse.ts +257 -0
  96. package/src/core/IUnitResponseElemPara.ts +11 -0
  97. package/src/core/IUserAcnoResponse.ts +182 -0
  98. package/src/core/IUserFindResponse.ts +140 -0
  99. package/src/core/IUserLiteResponse.ts +141 -0
  100. package/src/core/IUserPartResponse.ts +170 -0
  101. package/src/core/IUserResponse.ts +421 -0
  102. package/src/core/IUserSzdwResponse.ts +165 -0
  103. package/src/core/index.ts +77 -0
  104. package/src/cron/ICronMainResponse.ts +174 -0
  105. package/src/cron/index.ts +3 -0
  106. package/src/decorators/DConfigManager.ts +23 -0
  107. package/src/decorators/DConfigProperty.ts +7 -0
  108. package/src/decorators/IConfigProperty.ts +32 -0
  109. package/src/decorators/index.ts +4 -0
  110. package/src/elem/IElemDataResponse.ts +101 -0
  111. package/src/elem/IElemElemResponse.ts +102 -0
  112. package/src/elem/ISysElemResponse.ts +51 -0
  113. package/src/elem/index.ts +4 -0
  114. package/src/enums/btnMode.ts +137 -0
  115. package/src/enums/cardMode.ts +28 -0
  116. package/src/enums/doneMode.ts +8 -0
  117. package/src/enums/editMode.ts +22 -0
  118. package/src/enums/emitterType.ts +6 -0
  119. package/src/enums/formType.ts +10 -0
  120. package/src/enums/index.ts +13 -0
  121. package/src/enums/storeId.ts +12 -0
  122. package/src/enums/usesStat.ts +14 -0
  123. package/src/enums/viewMode.ts +7 -0
  124. package/src/enums/whatDone.ts +30 -0
  125. package/src/expd/IExpdBAXQResponse.ts +61 -0
  126. package/src/expd/IExpdCallResponse.ts +57 -0
  127. package/src/expd/IExpdCardResponse.ts +102 -0
  128. package/src/expd/IExpdCashResponse.ts +75 -0
  129. package/src/expd/IExpdHYHBResponse.ts +53 -0
  130. package/src/expd/IExpdHYMXResponse.ts +61 -0
  131. package/src/expd/IExpdLfmxResponse.ts +56 -0
  132. package/src/expd/IExpdMainResponse.ts +552 -0
  133. package/src/expd/IExpdP2pzResponse.ts +59 -0
  134. package/src/expd/IExpdP5pzResponse.ts +57 -0
  135. package/src/expd/IExpdSZMXResponse.ts +66 -0
  136. package/src/expd/IViewLockResponse.ts +63 -0
  137. package/src/expd/index.ts +36 -0
  138. package/src/flow/IFlowCnfgResponse.ts +69 -0
  139. package/src/flow/IFlowDataResponse.ts +193 -0
  140. package/src/flow/IFlowDutyNodeParaConv.ts +7 -0
  141. package/src/flow/IFlowDutyResponse.ts +85 -0
  142. package/src/flow/IFlowMainResponse.ts +126 -0
  143. package/src/flow/IFlowNodeResponse.ts +473 -0
  144. package/src/flow/IFlowTypeResponse.ts +3 -0
  145. package/src/flow/IFlowUservoidResponse.ts +35 -0
  146. package/src/flow/IFlowVoidResponse.ts +73 -0
  147. package/src/flow/index.ts +27 -0
  148. package/src/gams/IGamsBillResponse.ts +348 -0
  149. package/src/gams/IGamsCnfgResponse.ts +79 -0
  150. package/src/gams/IGamsEachResponse.ts +67 -0
  151. package/src/gams/IGamsItemResponse.ts +109 -0
  152. package/src/gams/IGamsK0kmResponse.ts +97 -0
  153. package/src/gams/IGamsK8kmResponse.ts +158 -0
  154. package/src/gams/IGamsMainResponse.ts +223 -0
  155. package/src/gams/IGamsTypeResponse.ts +113 -0
  156. package/src/gams/IGamsWtdwResponse.ts +62 -0
  157. package/src/gams/index.ts +27 -0
  158. package/src/gzjg/IGzjgBodyLockResponse.ts +65 -0
  159. package/src/gzjg/IGzjgGzlmLandResponse.ts +88 -0
  160. package/src/gzjg/IGzjgGzlmResponse.ts +193 -0
  161. package/src/gzjg/IGzjgGzlmResponseGzlmPara.ts +25 -0
  162. package/src/gzjg/IGzjgGzlmWithResponse.ts +88 -0
  163. package/src/gzjg/IGzjgMainResponse.ts +240 -0
  164. package/src/gzjg/IGzjgMainResponseGzjgPara.ts +31 -0
  165. package/src/gzjg/IGzjgMainResponseWithYZPZ.ts +41 -0
  166. package/src/gzjg/IGzjgQzgsResponse.ts +55 -0
  167. package/src/gzjg/index.ts +27 -0
  168. package/src/gztb/IGztbMainResponse.ts +110 -0
  169. package/src/gztb/index.ts +3 -0
  170. package/src/gzzd/ICellEditResponse.ts +47 -0
  171. package/src/gzzd/IGzzdBillResponse.ts +160 -0
  172. package/src/gzzd/IGzzdLineResponse.ts +19 -0
  173. package/src/gzzd/IGzzdMainResponse.ts +218 -0
  174. package/src/gzzd/index.ts +6 -0
  175. package/src/hzcb/IHzcbMainResponse.ts +263 -0
  176. package/src/hzcb/IHzcbRypqResponse.ts +258 -0
  177. package/src/hzcb/IHzcbXmtzBillResponse.ts +105 -0
  178. package/src/hzcb/IHzcbXmtzResponse.ts +195 -0
  179. package/src/hzcb/IHzcbXmykResponse.ts +197 -0
  180. package/src/hzcb/IHzcbZjlyResponse.ts +73 -0
  181. package/src/hzcb/index.ts +18 -0
  182. package/src/hznj/IHznjBaseItemResponse.ts +61 -0
  183. package/src/hznj/IHznjBasePathResponse.ts +45 -0
  184. package/src/hznj/IHznjBaseResponse.ts +120 -0
  185. package/src/hznj/index.ts +5 -0
  186. package/src/hznk/IHznkBaseNbyhResponse.ts +49 -0
  187. package/src/hznk/IHznkBasePathResponse.ts +47 -0
  188. package/src/hznk/IHznkBaseResponse.ts +186 -0
  189. package/src/hznk/IHznkBaseWbdwResponse.ts +55 -0
  190. package/src/hznk/IHznkBaseWbyhResponse.ts +49 -0
  191. package/src/hznk/IHznkDataEachResponse.ts +49 -0
  192. package/src/hznk/IHznkDataItemResponse.ts +49 -0
  193. package/src/hznk/IHznkDataNbyhResponse.ts +56 -0
  194. package/src/hznk/IHznkDataPathResponse.ts +47 -0
  195. package/src/hznk/IHznkDataResponse.ts +293 -0
  196. package/src/hznk/IHznkFydwBillResponse.ts +53 -0
  197. package/src/hznk/IHznkFydwFromResponse.ts +47 -0
  198. package/src/hznk/IHznkFydwItemResponse.ts +49 -0
  199. package/src/hznk/IHznkFydwPathResponse.ts +47 -0
  200. package/src/hznk/IHznkFydwResponse.ts +179 -0
  201. package/src/hznk/IHznkFytqResponse.ts +0 -0
  202. package/src/hznk/IHznkMainNbyhResponse.ts +49 -0
  203. package/src/hznk/IHznkMainResponse.ts +208 -0
  204. package/src/hznk/IHznkMainRwzbResponse.ts +57 -0
  205. package/src/hznk/IHznkMainWbdwResponse.ts +54 -0
  206. package/src/hznk/IHznkMainWbyhResponse.ts +49 -0
  207. package/src/hznk/IHznkNoteFromResponse.ts +47 -0
  208. package/src/hznk/IHznkNotePathResponse.ts +47 -0
  209. package/src/hznk/IHznkNoteResponse.ts +101 -0
  210. package/src/hznk/IHznkXmysItemResponse.ts +49 -0
  211. package/src/hznk/IHznkXmysResponse.ts +110 -0
  212. package/src/hznk/IHznkXmysYsxqResponse.ts +51 -0
  213. package/src/hznk/IHznkYssqResponse.ts +104 -0
  214. package/src/hznk/index.ts +77 -0
  215. package/src/hznk/readme.md +1 -0
  216. package/src/index.ts +98 -0
  217. package/src/japz/IJapzCnfgResponse.ts +73 -0
  218. package/src/japz/IJapzItemResponse.ts +69 -0
  219. package/src/japz/IJapzK0kmResponse.ts +64 -0
  220. package/src/japz/IJapzK7kmResponse.ts +64 -0
  221. package/src/japz/IJapzK8kmResponse.ts +71 -0
  222. package/src/japz/IJapzK9kmResponse.ts +64 -0
  223. package/src/japz/index.ts +21 -0
  224. package/src/japz/readme.md +8 -0
  225. package/src/load/ILoadCellResponse.ts +53 -0
  226. package/src/load/ILoadDataResponse.ts +54 -0
  227. package/src/load/ILoadLineResponse.ts +11 -0
  228. package/src/load/ILoadMainResponse.ts +116 -0
  229. package/src/load/ILoadZydwResponse.ts +57 -0
  230. package/src/load/IYqdwResponse.ts +65 -0
  231. package/src/load/IYqkbResponse.ts +65 -0
  232. package/src/load/IYqkmResponse.ts +51 -0
  233. package/src/load/index.ts +27 -0
  234. package/src/micro/appData.ts +29 -0
  235. package/src/micro/appName.ts +8 -0
  236. package/src/micro/appTab.ts +15 -0
  237. package/src/micro/index.ts +6 -0
  238. package/src/myoa/IMyoaCashResponse.ts +107 -0
  239. package/src/myoa/IMyoaMainResponse.ts +479 -0
  240. package/src/myoa/IMyoaPGDWResponse.ts +49 -0
  241. package/src/myoa/IMyoaRoomResponse.ts +99 -0
  242. package/src/myoa/index.ts +6 -0
  243. package/src/noti/INotiMainResponse.ts +394 -0
  244. package/src/noti/index.ts +3 -0
  245. package/src/pzpt/IPzptCnfgMoreResponse.ts +59 -0
  246. package/src/pzpt/IPzptCnfgResponse.ts +171 -0
  247. package/src/pzpt/IPzptGlfaResponse.ts +84 -0
  248. package/src/pzpt/IPzptGlkmResponse.ts +98 -0
  249. package/src/pzpt/IPzptGlkmfdResponse.ts +59 -0
  250. package/src/pzpt/IPzptGlkmzdResponse.ts +59 -0
  251. package/src/pzpt/IPzptItemResponse.ts +104 -0
  252. package/src/pzpt/IPzptK0kmResponse.ts +69 -0
  253. package/src/pzpt/IPzptK8kmResponse.ts +183 -0
  254. package/src/pzpt/IPzptKbkmResponse.ts +139 -0
  255. package/src/pzpt/IPzptPzpzDataResponse.ts +79 -0
  256. package/src/pzpt/IPzptPzpzP6pzResponse.ts +136 -0
  257. package/src/pzpt/IPzptPzpzResponse.ts +116 -0
  258. package/src/pzpt/IPzptTypeResponse.ts +88 -0
  259. package/src/pzpt/IPzptUkkmResponse.ts +87 -0
  260. package/src/pzpt/index.ts +42 -0
  261. package/src/response/IResponse.ts +48 -0
  262. package/src/store/dateState.ts +49 -0
  263. package/src/store/index.ts +8 -0
  264. package/src/store/menuState.ts +9 -0
  265. package/src/store/tabsState.ts +13 -0
  266. package/src/store/userState.ts +50 -0
  267. package/src/store/viewState.ts +9 -0
  268. package/src/tabl/ITablDataResponse.ts +72 -0
  269. package/src/tabl/ITablLineResponse.ts +13 -0
  270. package/src/tabl/ITablMainResponse.ts +184 -0
  271. package/src/tabl/index.ts +5 -0
  272. package/src/take/ITakeBillResponse.ts +144 -0
  273. package/src/take/ITakeMainResponse.ts +205 -0
  274. package/src/take/index.ts +4 -0
  275. package/src/talk/ITalkMainResponse.ts +95 -0
  276. package/src/task/ITaskMainResponse.ts +121 -0
  277. package/src/task/index.ts +3 -0
  278. package/src/wldy/IWldyDataResponse.ts +70 -0
  279. package/src/wldy/IWldyItemResponse.ts +74 -0
  280. package/src/wldy/IWldyPageParaResponse.ts +42 -0
  281. package/src/wldy/IWldyPageResponse.ts +104 -0
  282. package/src/wldy/index.ts +18 -0
  283. package/src/wlzf/IWlzfEnvrResponse.ts +116 -0
  284. package/src/wlzf/index.ts +3 -0
  285. package/src/wtui/ITodoResponse.ts +15 -0
  286. package/src/wtui/IViewCtrlResponse.ts +111 -0
  287. package/src/wtui/IWtuiColWidthResponse.ts +53 -0
  288. package/src/wtui/IWtuiFormParaResponse.ts +17 -0
  289. package/src/wtui/IWtuiFormResponse.ts +92 -0
  290. package/src/wtui/IWtuiItemCalc.ts +36 -0
  291. package/src/wtui/IWtuiItemEffect.ts +43 -0
  292. package/src/wtui/IWtuiItemParaResponse.ts +59 -0
  293. package/src/wtui/IWtuiItemResponse.ts +116 -0
  294. package/src/wtui/IWtuiMainResponse.ts +114 -0
  295. package/src/wtui/IWtuiNodeResponse.ts +75 -0
  296. package/src/wtui/IWtuiOperateResponse.ts +80 -0
  297. package/src/wtui/IWtuiRootResponse.ts +62 -0
  298. package/src/wtui/IWtuiTodoResponse.ts +99 -0
  299. package/src/wtui/IWtuiTodoResponseTodoPara.ts +7 -0
  300. package/src/wtui/IWtuiTodoResponseWithPara.ts +32 -0
  301. package/src/wtui/IWtuiUserCnfgResponse.ts +100 -0
  302. package/src/wtui/IWtuiViewResponse.ts +91 -0
  303. package/src/wtui/IWtuiZoneResponse.ts +61 -0
  304. package/src/wtui/index.ts +57 -0
  305. package/src/wzpz/IWzWithParaResponse.ts +147 -0
  306. package/src/wzpz/IWzpzCnfgResponse.ts +106 -0
  307. package/src/wzpz/IWzpzItemResponse.ts +78 -0
  308. package/src/wzpz/IWzpzK0kmResponse.ts +94 -0
  309. package/src/wzpz/IWzpzK8kmResponse.ts +141 -0
  310. package/src/wzpz/IWzpzKbkmResponse.ts +124 -0
  311. package/src/wzpz/IWzpzPckmResponse.ts +49 -0
  312. package/src/wzpz/IWzpzTypeResponse.ts +87 -0
  313. package/src/wzpz/index.ts +27 -0
  314. package/src/yzcb/ICbjgMainResponse.ts +133 -0
  315. package/src/yzcb/IYzcbBillResponse.ts +49 -0
  316. package/src/yzcb/IYzcbMainResponse.ts +189 -0
  317. package/src/yzcb/index.ts +5 -0
  318. package/src/yzcg/IYzcgBillResponse.ts +72 -0
  319. package/src/yzcg/IYzcgGshdResponse.ts +59 -0
  320. package/src/yzcg/IYzcgLockResponse.ts +41 -0
  321. package/src/yzcg/IYzcgMainResponse.ts +308 -0
  322. package/src/yzcg/index.ts +6 -0
  323. package/src/yzcq/IYzcqMainResponse.ts +120 -0
  324. package/src/yzcq/index.ts +3 -0
  325. package/src/yzht/IYzhtBillResponse.ts +188 -0
  326. package/src/yzht/IYzhtDzmxResponse.ts +57 -0
  327. package/src/yzht/IYzhtFymxResponse.ts +99 -0
  328. package/src/yzht/IYzhtGlfdResponse.ts +53 -0
  329. package/src/yzht/IYzhtGlpzResponse.ts +52 -0
  330. package/src/yzht/IYzhtGlzdResponse.ts +56 -0
  331. package/src/yzht/IYzhtMainResponse.ts +677 -0
  332. package/src/yzht/index.ts +18 -0
  333. package/src/yzpz/IYzpzCnfgResponse.ts +95 -0
  334. package/src/yzpz/IYzpzItemResponse.ts +83 -0
  335. package/src/yzpz/IYzpzK0kmResponse.ts +73 -0
  336. package/src/yzpz/IYzpzK8kmResponse.ts +162 -0
  337. package/src/yzpz/IYzpzKbkmResponse.ts +86 -0
  338. package/src/yzpz/IYzpzTypeResponse.ts +96 -0
  339. package/src/yzpz/IYzpzTypeResponseConf.ts +36 -0
  340. package/src/yzpz/index.ts +24 -0
  341. package/src/zbhd/IZbhdMainResponese.ts +246 -0
  342. package/src/zbhd/IZbzdCnfgResponse.ts +84 -0
  343. package/src/zbhd/index.ts +4 -0
  344. package/src/zbzd/IZbzbZbflResponse.ts +226 -0
  345. package/src/zbzd/IZbzdMainResponse.ts +321 -0
  346. package/src/zbzd/index.ts +4 -0
  347. package/src/zfht/IZfhtResponse.ts +103 -0
  348. package/src/zfht/index.ts +3 -0
  349. package/src/zfsq/IZfsqResponse.ts +193 -0
  350. package/src/zfsq/index.ts +3 -0
  351. package/tsconfig.json +22 -0
  352. package/vite.config.ts +33 -0
  353. package/es/_virtual/index.interface.js +0 -4
  354. package/es/_virtual/index.js +0 -5
  355. package/es/_virtual/index2.js +0 -4
  356. package/es/antv/IAntvCnfgResponse.d.ts +0 -68
  357. package/es/antv/IAntvCnfgResponse.js +0 -37
  358. package/es/antv/IAntvMainResponse.d.ts +0 -66
  359. package/es/antv/IAntvMainResponse.js +0 -36
  360. package/es/antv/IAntvParaResponse.d.ts +0 -48
  361. package/es/antv/IAntvParaResponse.js +0 -27
  362. package/es/antv/index.d.ts +0 -4
  363. package/es/antv/index.js +0 -8
  364. package/es/app/ITab.d.ts +0 -51
  365. package/es/app/ITab.js +0 -30
  366. package/es/app/IUserData.d.ts +0 -6
  367. package/es/app/index.d.ts +0 -3
  368. package/es/app/index.js +0 -5
  369. package/es/base/IBaseResponse.d.ts +0 -24
  370. package/es/base/IBaseResponse.js +0 -15
  371. package/es/bill/IBillCnfgResponse.d.ts +0 -93
  372. package/es/bill/IBillCnfgResponse.js +0 -51
  373. package/es/bill/IBillMainResponse.d.ts +0 -240
  374. package/es/bill/IBillMainResponse.js +0 -132
  375. package/es/bill/index.d.ts +0 -3
  376. package/es/bill/index.js +0 -6
  377. package/es/card/ICardBookResponse.d.ts +0 -119
  378. package/es/card/ICardBookResponse.js +0 -62
  379. package/es/card/ICardDataResponse.d.ts +0 -172
  380. package/es/card/ICardDataResponse.js +0 -104
  381. package/es/card/ICardFromResponse.d.ts +0 -66
  382. package/es/card/ICardFromResponse.js +0 -31
  383. package/es/card/ICardFwczResponse.d.ts +0 -163
  384. package/es/card/ICardFwczResponse.js +0 -91
  385. package/es/card/ICardHyhbBillResponse.d.ts +0 -91
  386. package/es/card/ICardHyhbBillResponse.js +0 -48
  387. package/es/card/ICardHyhbResponse.d.ts +0 -79
  388. package/es/card/ICardHyhbResponse.js +0 -41
  389. package/es/card/ICardMainFindResponse.d.ts +0 -91
  390. package/es/card/ICardMainFindResponse.js +0 -48
  391. package/es/card/ICardMainResponse.d.ts +0 -654
  392. package/es/card/ICardMainResponse.js +0 -261
  393. package/es/card/ICardRoomResponse.d.ts +0 -171
  394. package/es/card/ICardRoomResponse.js +0 -88
  395. package/es/card/IGblbResponse.d.ts +0 -92
  396. package/es/card/IGblbResponse.js +0 -65
  397. package/es/card/IP4pzResponse.d.ts +0 -66
  398. package/es/card/IP4pzResponse.js +0 -38
  399. package/es/card/ISyszclbgblbResponse.d.ts +0 -57
  400. package/es/card/ISyszclbgblbResponse.js +0 -35
  401. package/es/card/IZcbdResponse.d.ts +0 -145
  402. package/es/card/IZcbdResponse.js +0 -86
  403. package/es/card/IZccfResponse.d.ts +0 -176
  404. package/es/card/IZccfResponse.js +0 -98
  405. package/es/card/IZcczResponse.d.ts +0 -156
  406. package/es/card/IZcczResponse.js +0 -94
  407. package/es/card/IZcdbResponse.d.ts +0 -172
  408. package/es/card/IZcdbResponse.js +0 -99
  409. package/es/card/IZclbResponse.d.ts +0 -99
  410. package/es/card/IZclbResponse.js +0 -61
  411. package/es/card/IZczjPropResponse.d.ts +0 -91
  412. package/es/card/IZczjPropResponse.js +0 -42
  413. package/es/card/IZczjResponse.d.ts +0 -101
  414. package/es/card/IZczjResponse.js +0 -58
  415. package/es/card/index.d.ts +0 -20
  416. package/es/card/index.js +0 -41
  417. package/es/cggz/ICggzBillResponse.d.ts +0 -68
  418. package/es/cggz/ICggzBillResponse.js +0 -37
  419. package/es/cggz/ICggzMainResponse.d.ts +0 -178
  420. package/es/cggz/ICggzMainResponse.js +0 -88
  421. package/es/cggz/index.d.ts +0 -3
  422. package/es/cggz/index.js +0 -6
  423. package/es/clas/IClasAttrResponse.d.ts +0 -64
  424. package/es/clas/IClasMainResponse.d.ts +0 -62
  425. package/es/conf/ICnfgMainResponse.d.ts +0 -76
  426. package/es/conf/ICnfgMainResponse.js +0 -42
  427. package/es/conf/IConfig.d.ts +0 -47
  428. package/es/conf/index.d.ts +0 -2
  429. package/es/conf/index.js +0 -4
  430. package/es/const/const_align.d.ts +0 -10
  431. package/es/const/const_align.js +0 -14
  432. package/es/const/const_audit.d.ts +0 -32
  433. package/es/const/const_audit.js +0 -11
  434. package/es/const/const_bizCode.d.ts +0 -2
  435. package/es/const/const_card.d.ts +0 -5
  436. package/es/const/const_card.js +0 -8
  437. package/es/const/const_clas.d.ts +0 -70
  438. package/es/const/const_clas.js +0 -73
  439. package/es/const/const_cnfg.d.ts +0 -73
  440. package/es/const/const_cnfg.js +0 -76
  441. package/es/const/const_data_from.d.ts +0 -7
  442. package/es/const/const_data_from.js +0 -9
  443. package/es/const/const_elem.d.ts +0 -48
  444. package/es/const/const_elem.js +0 -49
  445. package/es/const/const_flow.d.ts +0 -7
  446. package/es/const/const_flow.js +0 -10
  447. package/es/const/const_gams_mode.d.ts +0 -4
  448. package/es/const/const_gams_mode.js +0 -7
  449. package/es/const/const_glpz_mode.d.ts +0 -2
  450. package/es/const/const_glpz_mode.js +0 -5
  451. package/es/const/const_gzlm.d.ts +0 -24
  452. package/es/const/const_gzlm.js +0 -39
  453. package/es/const/const_hznk.d.ts +0 -17
  454. package/es/const/const_hznt.d.ts +0 -57
  455. package/es/const/const_module.d.ts +0 -92
  456. package/es/const/const_module.js +0 -26
  457. package/es/const/const_myoa.d.ts +0 -62
  458. package/es/const/const_myoa.js +0 -32
  459. package/es/const/const_p4pt.d.ts +0 -6
  460. package/es/const/const_part.d.ts +0 -17
  461. package/es/const/const_part.js +0 -20
  462. package/es/const/const_stat.d.ts +0 -278
  463. package/es/const/const_stat.js +0 -89
  464. package/es/const/const_take_type.d.ts +0 -9
  465. package/es/const/const_take_type.js +0 -9
  466. package/es/const/const_todo.d.ts +0 -27
  467. package/es/const/const_todo.js +0 -30
  468. package/es/const/const_travel.d.ts +0 -4
  469. package/es/const/const_travel.js +0 -7
  470. package/es/const/const_type.d.ts +0 -59
  471. package/es/const/const_type.js +0 -62
  472. package/es/const/const_type_name.d.ts +0 -210
  473. package/es/const/const_type_name.js +0 -209
  474. package/es/const/const_user.d.ts +0 -2
  475. package/es/const/const_user.js +0 -5
  476. package/es/const/const_user_acno.d.ts +0 -5
  477. package/es/const/const_user_acno.js +0 -7
  478. package/es/const/const_wldy_item_type.d.ts +0 -4
  479. package/es/const/const_wldy_item_type.js +0 -7
  480. package/es/const/const_wtui_item_type.d.ts +0 -21
  481. package/es/const/const_wtui_item_type.js +0 -24
  482. package/es/const/const_yiha.d.ts +0 -22
  483. package/es/const/const_yiha.js +0 -25
  484. package/es/const/const_zbzd.d.ts +0 -8
  485. package/es/const/const_zbzd.js +0 -11
  486. package/es/const/index.d.ts +0 -32
  487. package/es/const/index.js +0 -54
  488. package/es/core/ICoreValidResponse.d.ts +0 -20
  489. package/es/core/ICoreValidResponse.js +0 -13
  490. package/es/core/IDeptLiteResponse.d.ts +0 -33
  491. package/es/core/IDeptLiteResponse.js +0 -29
  492. package/es/core/IDeptResponse.d.ts +0 -118
  493. package/es/core/IDeptResponse.js +0 -79
  494. package/es/core/IDictResponse.d.ts +0 -132
  495. package/es/core/IDictResponse.js +0 -94
  496. package/es/core/IDictResponseConf.d.ts +0 -10
  497. package/es/core/IDictResponseDictPara.d.ts +0 -41
  498. package/es/core/IDictResponseDictPara.js +0 -20
  499. package/es/core/IEnvrResponse.d.ts +0 -94
  500. package/es/core/IEnvrResponse.js +0 -50
  501. package/es/core/ILaidResponse.d.ts +0 -114
  502. package/es/core/ILaidResponse.js +0 -73
  503. package/es/core/IPartResponse.d.ts +0 -91
  504. package/es/core/IPartResponse.js +0 -57
  505. package/es/core/IPathResponse.d.ts +0 -124
  506. package/es/core/IPathResponse.js +0 -67
  507. package/es/core/ISourceItem.d.ts +0 -54
  508. package/es/core/ISourceItem.js +0 -30
  509. package/es/core/IStypResponse.d.ts +0 -44
  510. package/es/core/IStypResponse.js +0 -25
  511. package/es/core/ISysClasResponse.d.ts +0 -56
  512. package/es/core/ISysClasResponse.js +0 -31
  513. package/es/core/ISysMenuWithCoreResponse.d.ts +0 -136
  514. package/es/core/ISysMenuWithCoreResponse.js +0 -79
  515. package/es/core/ISysMenuWithCoreResponseMenuPara.d.ts +0 -4
  516. package/es/core/ISysMenuWithCoreResponseMenuPara.js +0 -5
  517. package/es/core/ISysMenuWithExpdResponse.d.ts +0 -316
  518. package/es/core/ISysMenuWithExpdResponse.js +0 -157
  519. package/es/core/ISysTravelResponse.d.ts +0 -99
  520. package/es/core/ISysTravelResponse.js +0 -73
  521. package/es/core/ITypeResponse.d.ts +0 -94
  522. package/es/core/ITypeResponse.js +0 -65
  523. package/es/core/IUnitBindResponse.d.ts +0 -60
  524. package/es/core/IUnitBindResponse.js +0 -36
  525. package/es/core/IUnitResponse.d.ts +0 -189
  526. package/es/core/IUnitResponse.js +0 -118
  527. package/es/core/IUnitResponseElemPara.d.ts +0 -10
  528. package/es/core/IUnitResponseElemPara.js +0 -8
  529. package/es/core/IUserAcnoResponse.d.ts +0 -164
  530. package/es/core/IUserAcnoResponse.js +0 -96
  531. package/es/core/IUserFindResponse.d.ts +0 -55
  532. package/es/core/IUserFindResponse.js +0 -84
  533. package/es/core/IUserLiteResponse.d.ts +0 -124
  534. package/es/core/IUserLiteResponse.js +0 -112
  535. package/es/core/IUserPartResponse.d.ts +0 -148
  536. package/es/core/IUserPartResponse.js +0 -92
  537. package/es/core/IUserResponse.d.ts +0 -355
  538. package/es/core/IUserResponse.js +0 -192
  539. package/es/core/IUserSzdwResponse.d.ts +0 -151
  540. package/es/core/IUserSzdwResponse.js +0 -95
  541. package/es/core/index.d.ts +0 -24
  542. package/es/core/index.js +0 -49
  543. package/es/cron/ICronMainResponse.d.ts +0 -151
  544. package/es/cron/ICronMainResponse.js +0 -89
  545. package/es/cron/index.d.ts +0 -2
  546. package/es/cron/index.js +0 -4
  547. package/es/decorators/DConfigManager.d.ts +0 -7
  548. package/es/decorators/DConfigManager.js +0 -15
  549. package/es/decorators/DConfigProperty.d.ts +0 -2
  550. package/es/decorators/DConfigProperty.js +0 -8
  551. package/es/decorators/IConfigProperty.d.ts +0 -21
  552. package/es/decorators/IConfigProperty.js +0 -4
  553. package/es/decorators/index.d.ts +0 -4
  554. package/es/decorators/index.js +0 -8
  555. package/es/elem/IElemDataResponse.d.ts +0 -90
  556. package/es/elem/IElemDataResponse.js +0 -59
  557. package/es/elem/IElemElemResponse.d.ts +0 -98
  558. package/es/elem/IElemElemResponse.js +0 -57
  559. package/es/elem/ISysElemResponse.d.ts +0 -50
  560. package/es/elem/ISysElemResponse.js +0 -28
  561. package/es/elem/index.d.ts +0 -4
  562. package/es/elem/index.js +0 -8
  563. package/es/enums/btnMode.d.ts +0 -135
  564. package/es/enums/btnMode.js +0 -5
  565. package/es/enums/cardMode.d.ts +0 -26
  566. package/es/enums/cardMode.js +0 -4
  567. package/es/enums/doneMode.d.ts +0 -5
  568. package/es/enums/doneMode.js +0 -4
  569. package/es/enums/editMode.d.ts +0 -19
  570. package/es/enums/editMode.js +0 -4
  571. package/es/enums/emitterType.d.ts +0 -4
  572. package/es/enums/emitterType.js +0 -4
  573. package/es/enums/formType.d.ts +0 -8
  574. package/es/enums/formType.js +0 -4
  575. package/es/enums/index.d.ts +0 -10
  576. package/es/enums/index.js +0 -22
  577. package/es/enums/storeId.d.ts +0 -11
  578. package/es/enums/storeId.js +0 -4
  579. package/es/enums/usesStat.d.ts +0 -12
  580. package/es/enums/usesStat.js +0 -5
  581. package/es/enums/viewMode.d.ts +0 -5
  582. package/es/enums/viewMode.js +0 -4
  583. package/es/enums/whatDone.d.ts +0 -25
  584. package/es/expd/IExpdBAXQResponse.d.ts +0 -60
  585. package/es/expd/IExpdBAXQResponse.js +0 -33
  586. package/es/expd/IExpdCallResponse.d.ts +0 -56
  587. package/es/expd/IExpdCallResponse.js +0 -31
  588. package/es/expd/IExpdCardResponse.d.ts +0 -94
  589. package/es/expd/IExpdCardResponse.js +0 -58
  590. package/es/expd/IExpdCashResponse.d.ts +0 -74
  591. package/es/expd/IExpdCashResponse.js +0 -40
  592. package/es/expd/IExpdHYHBResponse.d.ts +0 -52
  593. package/es/expd/IExpdHYHBResponse.js +0 -29
  594. package/es/expd/IExpdHYMXResponse.d.ts +0 -58
  595. package/es/expd/IExpdHYMXResponse.js +0 -32
  596. package/es/expd/IExpdLfmxResponse.d.ts +0 -54
  597. package/es/expd/IExpdLfmxResponse.js +0 -30
  598. package/es/expd/IExpdMainResponse.d.ts +0 -513
  599. package/es/expd/IExpdMainResponse.js +0 -268
  600. package/es/expd/IExpdP2pzResponse.d.ts +0 -58
  601. package/es/expd/IExpdP2pzResponse.js +0 -32
  602. package/es/expd/IExpdP5pzResponse.d.ts +0 -54
  603. package/es/expd/IExpdP5pzResponse.js +0 -30
  604. package/es/expd/IExpdSZMXResponse.d.ts +0 -65
  605. package/es/expd/IViewLockResponse.d.ts +0 -58
  606. package/es/expd/IViewLockResponse.js +0 -35
  607. package/es/expd/index.d.ts +0 -12
  608. package/es/expd/index.js +0 -24
  609. package/es/flow/IFlowCnfgResponse.d.ts +0 -59
  610. package/es/flow/IFlowCnfgResponse.js +0 -34
  611. package/es/flow/IFlowDataResponse.d.ts +0 -142
  612. package/es/flow/IFlowDataResponse.js +0 -86
  613. package/es/flow/IFlowDutyNodeParaConv.d.ts +0 -6
  614. package/es/flow/IFlowDutyNodeParaConv.js +0 -6
  615. package/es/flow/IFlowDutyResponse.d.ts +0 -63
  616. package/es/flow/IFlowDutyResponse.js +0 -46
  617. package/es/flow/IFlowMainResponse.d.ts +0 -116
  618. package/es/flow/IFlowMainResponse.js +0 -52
  619. package/es/flow/IFlowNodeResponse.d.ts +0 -233
  620. package/es/flow/IFlowNodeResponse.js +0 -108
  621. package/es/flow/IFlowTypeResponse.d.ts +0 -4
  622. package/es/flow/IFlowTypeResponse.js +0 -5
  623. package/es/flow/IFlowUservoidResponse.d.ts +0 -34
  624. package/es/flow/IFlowUservoidResponse.js +0 -20
  625. package/es/flow/IFlowVoidResponse.d.ts +0 -70
  626. package/es/flow/IFlowVoidResponse.js +0 -38
  627. package/es/flow/index.d.ts +0 -9
  628. package/es/flow/index.js +0 -18
  629. package/es/gams/IGamsBillResponse.d.ts +0 -321
  630. package/es/gams/IGamsBillResponse.js +0 -187
  631. package/es/gams/IGamsCnfgResponse.d.ts +0 -73
  632. package/es/gams/IGamsCnfgResponse.js +0 -41
  633. package/es/gams/IGamsEachResponse.d.ts +0 -66
  634. package/es/gams/IGamsEachResponse.js +0 -37
  635. package/es/gams/IGamsItemResponse.d.ts +0 -99
  636. package/es/gams/IGamsItemResponse.js +0 -47
  637. package/es/gams/IGamsK0kmResponse.d.ts +0 -80
  638. package/es/gams/IGamsK0kmResponse.js +0 -53
  639. package/es/gams/IGamsK8kmResponse.d.ts +0 -147
  640. package/es/gams/IGamsK8kmResponse.js +0 -73
  641. package/es/gams/IGamsMainResponse.d.ts +0 -217
  642. package/es/gams/IGamsMainResponse.js +0 -124
  643. package/es/gams/IGamsTypeResponse.d.ts +0 -103
  644. package/es/gams/IGamsTypeResponse.js +0 -59
  645. package/es/gams/IGamsWtdwResponse.d.ts +0 -60
  646. package/es/gams/index.d.ts +0 -9
  647. package/es/gams/index.js +0 -18
  648. package/es/gzjg/IGzjgBodyLockResponse.d.ts +0 -64
  649. package/es/gzjg/IGzjgBodyLockResponse.js +0 -35
  650. package/es/gzjg/IGzjgGzlmLandResponse.d.ts +0 -82
  651. package/es/gzjg/IGzjgGzlmLandResponse.js +0 -62
  652. package/es/gzjg/IGzjgGzlmResponse.d.ts +0 -156
  653. package/es/gzjg/IGzjgGzlmResponse.js +0 -101
  654. package/es/gzjg/IGzjgGzlmResponseGzlmPara.d.ts +0 -24
  655. package/es/gzjg/IGzjgGzlmResponseGzlmPara.js +0 -15
  656. package/es/gzjg/IGzjgGzlmWithResponse.d.ts +0 -85
  657. package/es/gzjg/IGzjgGzlmWithResponse.js +0 -45
  658. package/es/gzjg/IGzjgMainResponse.d.ts +0 -199
  659. package/es/gzjg/IGzjgMainResponse.js +0 -116
  660. package/es/gzjg/IGzjgMainResponseGzjgPara.d.ts +0 -25
  661. package/es/gzjg/IGzjgMainResponseGzjgPara.js +0 -14
  662. package/es/gzjg/IGzjgMainResponseWithYZPZ.d.ts +0 -40
  663. package/es/gzjg/IGzjgMainResponseWithYZPZ.js +0 -23
  664. package/es/gzjg/IGzjgQzgsResponse.d.ts +0 -54
  665. package/es/gzjg/IGzjgQzgsResponse.js +0 -30
  666. package/es/gzjg/index.d.ts +0 -9
  667. package/es/gzjg/index.js +0 -18
  668. package/es/gztb/IGztbMainResponse.d.ts +0 -102
  669. package/es/gztb/IGztbMainResponse.js +0 -52
  670. package/es/gztb/index.d.ts +0 -2
  671. package/es/gztb/index.js +0 -4
  672. package/es/gzzd/ICellEditResponse.d.ts +0 -46
  673. package/es/gzzd/ICellEditResponse.js +0 -26
  674. package/es/gzzd/IGzzdBillResponse.d.ts +0 -144
  675. package/es/gzzd/IGzzdBillResponse.js +0 -74
  676. package/es/gzzd/IGzzdLineResponse.d.ts +0 -17
  677. package/es/gzzd/IGzzdLineResponse.js +0 -10
  678. package/es/gzzd/IGzzdMainResponse.d.ts +0 -174
  679. package/es/gzzd/IGzzdMainResponse.js +0 -100
  680. package/es/gzzd/index.d.ts +0 -5
  681. package/es/gzzd/index.js +0 -10
  682. package/es/hzcb/IHzcbMainResponse.d.ts +0 -227
  683. package/es/hzcb/IHzcbMainResponse.js +0 -123
  684. package/es/hzcb/IHzcbRypqResponse.d.ts +0 -232
  685. package/es/hzcb/IHzcbRypqResponse.js +0 -129
  686. package/es/hzcb/IHzcbXmtzBillResponse.d.ts +0 -104
  687. package/es/hzcb/IHzcbXmtzResponse.d.ts +0 -160
  688. package/es/hzcb/IHzcbXmtzResponse.js +0 -92
  689. package/es/hzcb/IHzcbXmykResponse.d.ts +0 -158
  690. package/es/hzcb/IHzcbXmykResponse.js +0 -93
  691. package/es/hzcb/IHzcbZjlyResponse.d.ts +0 -70
  692. package/es/hzcb/IHzcbZjlyResponse.js +0 -36
  693. package/es/hzcb/index.d.ts +0 -6
  694. package/es/hzcb/index.js +0 -12
  695. package/es/hznj/IHznjBaseItemResponse.d.ts +0 -60
  696. package/es/hznj/IHznjBaseItemResponse.js +0 -33
  697. package/es/hznj/IHznjBasePathResponse.d.ts +0 -44
  698. package/es/hznj/IHznjBasePathResponse.js +0 -25
  699. package/es/hznj/IHznjBaseResponse.d.ts +0 -116
  700. package/es/hznj/IHznjBaseResponse.js +0 -56
  701. package/es/hznj/index.d.ts +0 -4
  702. package/es/hznj/index.js +0 -8
  703. package/es/hznk/IHznkBaseNbyhResponse.d.ts +0 -48
  704. package/es/hznk/IHznkBaseNbyhResponse.js +0 -27
  705. package/es/hznk/IHznkBasePathResponse.d.ts +0 -46
  706. package/es/hznk/IHznkBasePathResponse.js +0 -26
  707. package/es/hznk/IHznkBaseResponse.d.ts +0 -154
  708. package/es/hznk/IHznkBaseResponse.js +0 -80
  709. package/es/hznk/IHznkBaseWbdwResponse.d.ts +0 -47
  710. package/es/hznk/IHznkBaseWbdwResponse.js +0 -30
  711. package/es/hznk/IHznkBaseWbyhResponse.d.ts +0 -48
  712. package/es/hznk/IHznkBaseWbyhResponse.js +0 -27
  713. package/es/hznk/IHznkDataEachResponse.d.ts +0 -48
  714. package/es/hznk/IHznkDataEachResponse.js +0 -27
  715. package/es/hznk/IHznkDataItemResponse.d.ts +0 -48
  716. package/es/hznk/IHznkDataItemResponse.js +0 -27
  717. package/es/hznk/IHznkDataNbyhResponse.d.ts +0 -48
  718. package/es/hznk/IHznkDataNbyhResponse.js +0 -30
  719. package/es/hznk/IHznkDataPathResponse.d.ts +0 -46
  720. package/es/hznk/IHznkDataPathResponse.js +0 -26
  721. package/es/hznk/IHznkDataResponse.d.ts +0 -249
  722. package/es/hznk/IHznkDataResponse.js +0 -115
  723. package/es/hznk/IHznkFydwBillResponse.d.ts +0 -52
  724. package/es/hznk/IHznkFydwBillResponse.js +0 -29
  725. package/es/hznk/IHznkFydwFromResponse.d.ts +0 -46
  726. package/es/hznk/IHznkFydwFromResponse.js +0 -26
  727. package/es/hznk/IHznkFydwItemResponse.d.ts +0 -48
  728. package/es/hznk/IHznkFydwItemResponse.js +0 -27
  729. package/es/hznk/IHznkFydwPathResponse.d.ts +0 -46
  730. package/es/hznk/IHznkFydwPathResponse.js +0 -26
  731. package/es/hznk/IHznkFydwResponse.d.ts +0 -140
  732. package/es/hznk/IHznkFydwResponse.js +0 -77
  733. package/es/hznk/IHznkFytqResponse.d.ts +0 -1
  734. package/es/hznk/IHznkMainNbyhResponse.d.ts +0 -48
  735. package/es/hznk/IHznkMainResponse.d.ts +0 -176
  736. package/es/hznk/IHznkMainResponse.js +0 -86
  737. package/es/hznk/IHznkMainRwzbResponse.d.ts +0 -49
  738. package/es/hznk/IHznkMainWbdwResponse.d.ts +0 -47
  739. package/es/hznk/IHznkMainWbyhResponse.d.ts +0 -48
  740. package/es/hznk/IHznkNoteFromResponse.d.ts +0 -46
  741. package/es/hznk/IHznkNoteFromResponse.js +0 -26
  742. package/es/hznk/IHznkNotePathResponse.d.ts +0 -46
  743. package/es/hznk/IHznkNotePathResponse.js +0 -26
  744. package/es/hznk/IHznkNoteResponse.d.ts +0 -97
  745. package/es/hznk/IHznkNoteResponse.js +0 -50
  746. package/es/hznk/IHznkXmysItemResponse.d.ts +0 -48
  747. package/es/hznk/IHznkXmysItemResponse.js +0 -27
  748. package/es/hznk/IHznkXmysResponse.d.ts +0 -106
  749. package/es/hznk/IHznkXmysResponse.js +0 -53
  750. package/es/hznk/IHznkXmysYsxqResponse.d.ts +0 -50
  751. package/es/hznk/IHznkXmysYsxqResponse.js +0 -28
  752. package/es/hznk/IHznkYssqResponse.d.ts +0 -100
  753. package/es/hznk/IHznkYssqResponse.js +0 -51
  754. package/es/hznk/index.d.ts +0 -24
  755. package/es/hznk/index.js +0 -48
  756. package/es/index.d.ts +0 -47
  757. package/es/index.js +0 -88
  758. package/es/japz/IJapzCnfgResponse.d.ts +0 -68
  759. package/es/japz/IJapzCnfgResponse.js +0 -35
  760. package/es/japz/IJapzItemResponse.d.ts +0 -66
  761. package/es/japz/IJapzItemResponse.js +0 -35
  762. package/es/japz/IJapzK0kmResponse.d.ts +0 -62
  763. package/es/japz/IJapzK0kmResponse.js +0 -33
  764. package/es/japz/IJapzK7kmResponse.d.ts +0 -62
  765. package/es/japz/IJapzK7kmResponse.js +0 -33
  766. package/es/japz/IJapzK8kmResponse.d.ts +0 -68
  767. package/es/japz/IJapzK8kmResponse.js +0 -35
  768. package/es/japz/IJapzK9kmResponse.d.ts +0 -61
  769. package/es/japz/IJapzK9kmResponse.js +0 -33
  770. package/es/japz/index.d.ts +0 -7
  771. package/es/japz/index.js +0 -14
  772. package/es/load/ILoadCellResponse.d.ts +0 -52
  773. package/es/load/ILoadCellResponse.js +0 -29
  774. package/es/load/ILoadDataResponse.d.ts +0 -48
  775. package/es/load/ILoadDataResponse.js +0 -26
  776. package/es/load/ILoadLineResponse.d.ts +0 -10
  777. package/es/load/ILoadLineResponse.js +0 -8
  778. package/es/load/ILoadMainResponse.d.ts +0 -112
  779. package/es/load/ILoadMainResponse.js +0 -58
  780. package/es/load/ILoadZydwResponse.d.ts +0 -54
  781. package/es/load/ILoadZydwResponse.js +0 -31
  782. package/es/load/IYqdwResponse.d.ts +0 -63
  783. package/es/load/IYqdwResponse.js +0 -35
  784. package/es/load/IYqkbResponse.d.ts +0 -64
  785. package/es/load/IYqkbResponse.js +0 -35
  786. package/es/load/IYqkmResponse.d.ts +0 -50
  787. package/es/load/IYqkmResponse.js +0 -28
  788. package/es/load/index.d.ts +0 -9
  789. package/es/load/index.js +0 -18
  790. package/es/micro/appData.d.ts +0 -24
  791. package/es/micro/appData.js +0 -15
  792. package/es/micro/appName.d.ts +0 -6
  793. package/es/micro/appName.js +0 -4
  794. package/es/micro/appTab.d.ts +0 -11
  795. package/es/micro/appTab.js +0 -8
  796. package/es/micro/index.d.ts +0 -5
  797. package/es/micro/index.js +0 -9
  798. package/es/myoa/IMyoaCashResponse.d.ts +0 -59
  799. package/es/myoa/IMyoaCashResponse.js +0 -45
  800. package/es/myoa/IMyoaMainResponse.d.ts +0 -341
  801. package/es/myoa/IMyoaMainResponse.js +0 -224
  802. package/es/myoa/IMyoaPGDWResponse.d.ts +0 -46
  803. package/es/myoa/IMyoaPGDWResponse.js +0 -26
  804. package/es/myoa/IMyoaRoomResponse.d.ts +0 -89
  805. package/es/myoa/IMyoaRoomResponse.js +0 -53
  806. package/es/myoa/index.d.ts +0 -5
  807. package/es/myoa/index.js +0 -10
  808. package/es/node_modules/.pnpm/@aximario_json-tree@2.2.4/node_modules/@aximario/json-tree/dist/index.interface.js +0 -14
  809. package/es/node_modules/.pnpm/@aximario_json-tree@2.2.4/node_modules/@aximario/json-tree/dist/index.js +0 -59
  810. package/es/noti/INotiMainResponse.d.ts +0 -335
  811. package/es/noti/INotiMainResponse.js +0 -152
  812. package/es/noti/index.d.ts +0 -2
  813. package/es/noti/index.js +0 -4
  814. package/es/pzpt/IPzptCnfgMoreResponse.d.ts +0 -58
  815. package/es/pzpt/IPzptCnfgMoreResponse.js +0 -32
  816. package/es/pzpt/IPzptCnfgResponse.d.ts +0 -161
  817. package/es/pzpt/IPzptCnfgResponse.js +0 -83
  818. package/es/pzpt/IPzptGlfaResponse.d.ts +0 -82
  819. package/es/pzpt/IPzptGlfaResponse.js +0 -46
  820. package/es/pzpt/IPzptGlkmResponse.d.ts +0 -92
  821. package/es/pzpt/IPzptGlkmResponse.js +0 -48
  822. package/es/pzpt/IPzptGlkmfdResponse.d.ts +0 -57
  823. package/es/pzpt/IPzptGlkmzdResponse.d.ts +0 -57
  824. package/es/pzpt/IPzptItemResponse.d.ts +0 -97
  825. package/es/pzpt/IPzptItemResponse.js +0 -51
  826. package/es/pzpt/IPzptK0kmResponse.d.ts +0 -66
  827. package/es/pzpt/IPzptK0kmResponse.js +0 -36
  828. package/es/pzpt/IPzptK8kmResponse.d.ts +0 -169
  829. package/es/pzpt/IPzptK8kmResponse.js +0 -98
  830. package/es/pzpt/IPzptKbkmResponse.d.ts +0 -125
  831. package/es/pzpt/IPzptKbkmResponse.js +0 -65
  832. package/es/pzpt/IPzptPzpzDataResponse.d.ts +0 -78
  833. package/es/pzpt/IPzptPzpzDataResponse.js +0 -42
  834. package/es/pzpt/IPzptPzpzP6pzResponse.d.ts +0 -122
  835. package/es/pzpt/IPzptPzpzP6pzResponse.js +0 -60
  836. package/es/pzpt/IPzptPzpzResponse.d.ts +0 -114
  837. package/es/pzpt/IPzptPzpzResponse.js +0 -67
  838. package/es/pzpt/IPzptTypeResponse.d.ts +0 -85
  839. package/es/pzpt/IPzptTypeResponse.js +0 -45
  840. package/es/pzpt/IPzptUkkmResponse.d.ts +0 -82
  841. package/es/pzpt/IPzptUkkmResponse.js +0 -43
  842. package/es/pzpt/index.d.ts +0 -14
  843. package/es/pzpt/index.js +0 -28
  844. package/es/response/IResponse.d.ts +0 -16
  845. package/es/store/dateState.d.ts +0 -42
  846. package/es/store/index.d.ts +0 -7
  847. package/es/store/index.js +0 -11
  848. package/es/store/menuState.d.ts +0 -7
  849. package/es/store/menuState.js +0 -6
  850. package/es/store/tabsState.d.ts +0 -11
  851. package/es/store/tabsState.js +0 -9
  852. package/es/store/userState.d.ts +0 -46
  853. package/es/store/userState.js +0 -26
  854. package/es/store/viewState.d.ts +0 -7
  855. package/es/store/viewState.js +0 -6
  856. package/es/tabl/ITablDataResponse.d.ts +0 -59
  857. package/es/tabl/ITablDataResponse.js +0 -32
  858. package/es/tabl/ITablLineResponse.d.ts +0 -12
  859. package/es/tabl/ITablLineResponse.js +0 -9
  860. package/es/tabl/ITablMainResponse.d.ts +0 -148
  861. package/es/tabl/ITablMainResponse.js +0 -87
  862. package/es/tabl/index.d.ts +0 -4
  863. package/es/tabl/index.js +0 -8
  864. package/es/take/ITakeBillResponse.d.ts +0 -136
  865. package/es/take/ITakeBillResponse.js +0 -73
  866. package/es/take/ITakeMainResponse.d.ts +0 -192
  867. package/es/take/ITakeMainResponse.js +0 -97
  868. package/es/take/index.d.ts +0 -3
  869. package/es/take/index.js +0 -6
  870. package/es/talk/ITalkMainResponse.d.ts +0 -91
  871. package/es/task/ITaskMainResponse.d.ts +0 -109
  872. package/es/task/ITaskMainResponse.js +0 -56
  873. package/es/task/index.d.ts +0 -2
  874. package/es/task/index.js +0 -4
  875. package/es/wldy/IWldyDataResponse.d.ts +0 -69
  876. package/es/wldy/IWldyDataResponse.js +0 -35
  877. package/es/wldy/IWldyItemResponse.d.ts +0 -72
  878. package/es/wldy/IWldyItemResponse.js +0 -39
  879. package/es/wldy/IWldyPageParaResponse.d.ts +0 -19
  880. package/es/wldy/IWldyPageParaResponse.js +0 -34
  881. package/es/wldy/IWldyPageResponse.d.ts +0 -89
  882. package/es/wldy/IWldyPageResponse.js +0 -59
  883. package/es/wldy/index.d.ts +0 -5
  884. package/es/wldy/index.js +0 -12
  885. package/es/wlzf/IWlzfEnvrResponse.d.ts +0 -112
  886. package/es/wlzf/IWlzfEnvrResponse.js +0 -59
  887. package/es/wlzf/index.d.ts +0 -2
  888. package/es/wlzf/index.js +0 -4
  889. package/es/wtui/ITodoResponse.d.ts +0 -14
  890. package/es/wtui/IViewCtrlResponse.d.ts +0 -84
  891. package/es/wtui/IViewCtrlResponse.js +0 -64
  892. package/es/wtui/IWtuiColWidthResponse.d.ts +0 -52
  893. package/es/wtui/IWtuiColWidthResponse.js +0 -29
  894. package/es/wtui/IWtuiFormParaResponse.d.ts +0 -16
  895. package/es/wtui/IWtuiFormParaResponse.js +0 -17
  896. package/es/wtui/IWtuiFormResponse.d.ts +0 -72
  897. package/es/wtui/IWtuiFormResponse.js +0 -48
  898. package/es/wtui/IWtuiItemCalc.d.ts +0 -34
  899. package/es/wtui/IWtuiItemCalc.js +0 -8
  900. package/es/wtui/IWtuiItemEffect.d.ts +0 -38
  901. package/es/wtui/IWtuiItemEffect.js +0 -24
  902. package/es/wtui/IWtuiItemParaResponse.d.ts +0 -56
  903. package/es/wtui/IWtuiItemParaResponse.js +0 -41
  904. package/es/wtui/IWtuiItemResponse.d.ts +0 -97
  905. package/es/wtui/IWtuiItemResponse.js +0 -56
  906. package/es/wtui/IWtuiMainResponse.d.ts +0 -110
  907. package/es/wtui/IWtuiMainResponse.js +0 -56
  908. package/es/wtui/IWtuiNodeResponse.d.ts +0 -74
  909. package/es/wtui/IWtuiNodeResponse.js +0 -40
  910. package/es/wtui/IWtuiOperateResponse.d.ts +0 -65
  911. package/es/wtui/IWtuiOperateResponse.js +0 -43
  912. package/es/wtui/IWtuiRootResponse.d.ts +0 -61
  913. package/es/wtui/IWtuiRootResponse.js +0 -33
  914. package/es/wtui/IWtuiTodoResponse.d.ts +0 -74
  915. package/es/wtui/IWtuiTodoResponse.js +0 -62
  916. package/es/wtui/IWtuiTodoResponseTodoPara.d.ts +0 -6
  917. package/es/wtui/IWtuiTodoResponseTodoPara.js +0 -6
  918. package/es/wtui/IWtuiTodoResponseWithPara.d.ts +0 -31
  919. package/es/wtui/IWtuiTodoResponseWithPara.js +0 -18
  920. package/es/wtui/IWtuiUserCnfgResponse.d.ts +0 -95
  921. package/es/wtui/IWtuiUserCnfgResponse.js +0 -44
  922. package/es/wtui/IWtuiViewResponse.d.ts +0 -83
  923. package/es/wtui/IWtuiViewResponse.js +0 -49
  924. package/es/wtui/IWtuiZoneResponse.d.ts +0 -56
  925. package/es/wtui/IWtuiZoneResponse.js +0 -29
  926. package/es/wtui/index.d.ts +0 -22
  927. package/es/wtui/index.js +0 -36
  928. package/es/wzpz/IWzWithParaResponse.d.ts +0 -104
  929. package/es/wzpz/IWzWithParaResponse.js +0 -70
  930. package/es/wzpz/IWzpzCnfgResponse.d.ts +0 -101
  931. package/es/wzpz/IWzpzCnfgResponse.js +0 -53
  932. package/es/wzpz/IWzpzItemResponse.d.ts +0 -77
  933. package/es/wzpz/IWzpzItemResponse.js +0 -42
  934. package/es/wzpz/IWzpzK0kmResponse.d.ts +0 -91
  935. package/es/wzpz/IWzpzK0kmResponse.js +0 -48
  936. package/es/wzpz/IWzpzK8kmResponse.d.ts +0 -132
  937. package/es/wzpz/IWzpzK8kmResponse.js +0 -67
  938. package/es/wzpz/IWzpzKbkmResponse.d.ts +0 -121
  939. package/es/wzpz/IWzpzKbkmResponse.js +0 -64
  940. package/es/wzpz/IWzpzPckmResponse.d.ts +0 -48
  941. package/es/wzpz/IWzpzPckmResponse.js +0 -27
  942. package/es/wzpz/IWzpzTypeResponse.d.ts +0 -86
  943. package/es/wzpz/IWzpzTypeResponse.js +0 -46
  944. package/es/wzpz/index.d.ts +0 -9
  945. package/es/wzpz/index.js +0 -18
  946. package/es/yzcb/ICbjgMainResponse.d.ts +0 -131
  947. package/es/yzcb/ICbjgMainResponse.js +0 -67
  948. package/es/yzcb/IYzcbBillResponse.d.ts +0 -48
  949. package/es/yzcb/IYzcbBillResponse.js +0 -27
  950. package/es/yzcb/IYzcbMainResponse.d.ts +0 -167
  951. package/es/yzcb/IYzcbMainResponse.js +0 -89
  952. package/es/yzcb/index.d.ts +0 -4
  953. package/es/yzcb/index.js +0 -8
  954. package/es/yzcg/IYzcgBillResponse.d.ts +0 -68
  955. package/es/yzcg/IYzcgBillResponse.js +0 -40
  956. package/es/yzcg/IYzcgGshdResponse.d.ts +0 -58
  957. package/es/yzcg/IYzcgGshdResponse.js +0 -32
  958. package/es/yzcg/IYzcgLockResponse.d.ts +0 -40
  959. package/es/yzcg/IYzcgLockResponse.js +0 -23
  960. package/es/yzcg/IYzcgMainResponse.d.ts +0 -259
  961. package/es/yzcg/IYzcgMainResponse.js +0 -142
  962. package/es/yzcg/index.d.ts +0 -5
  963. package/es/yzcg/index.js +0 -10
  964. package/es/yzcq/IYzcqMainResponse.d.ts +0 -94
  965. package/es/yzcq/index.d.ts +0 -2
  966. package/es/yzht/IYzhtBillResponse.d.ts +0 -179
  967. package/es/yzht/IYzhtBillResponse.js +0 -92
  968. package/es/yzht/IYzhtDzmxResponse.d.ts +0 -56
  969. package/es/yzht/IYzhtFymxResponse.d.ts +0 -98
  970. package/es/yzht/IYzhtGlfdResponse.d.ts +0 -52
  971. package/es/yzht/IYzhtGlfdResponse.js +0 -29
  972. package/es/yzht/IYzhtGlpzResponse.d.ts +0 -48
  973. package/es/yzht/IYzhtGlpzResponse.js +0 -26
  974. package/es/yzht/IYzhtGlzdResponse.d.ts +0 -45
  975. package/es/yzht/IYzhtGlzdResponse.js +0 -32
  976. package/es/yzht/IYzhtMainResponse.d.ts +0 -631
  977. package/es/yzht/IYzhtMainResponse.js +0 -315
  978. package/es/yzht/index.d.ts +0 -6
  979. package/es/yzht/index.js +0 -12
  980. package/es/yzpz/IYzpzCnfgResponse.d.ts +0 -93
  981. package/es/yzpz/IYzpzCnfgResponse.js +0 -49
  982. package/es/yzpz/IYzpzItemResponse.d.ts +0 -73
  983. package/es/yzpz/IYzpzItemResponse.js +0 -47
  984. package/es/yzpz/IYzpzK0kmResponse.d.ts +0 -72
  985. package/es/yzpz/IYzpzK0kmResponse.js +0 -39
  986. package/es/yzpz/IYzpzK8kmResponse.d.ts +0 -144
  987. package/es/yzpz/IYzpzK8kmResponse.js +0 -77
  988. package/es/yzpz/IYzpzKbkmResponse.d.ts +0 -85
  989. package/es/yzpz/IYzpzKbkmResponse.js +0 -46
  990. package/es/yzpz/IYzpzTypeResponse.d.ts +0 -94
  991. package/es/yzpz/IYzpzTypeResponse.js +0 -50
  992. package/es/yzpz/IYzpzTypeResponseConf.d.ts +0 -10
  993. package/es/yzpz/IYzpzTypeResponseConf.js +0 -40
  994. package/es/yzpz/index.d.ts +0 -8
  995. package/es/yzpz/index.js +0 -16
  996. package/es/zbhd/IZbhdMainResponese.d.ts +0 -229
  997. package/es/zbhd/IZbhdMainResponese.js +0 -115
  998. package/es/zbhd/IZbzdCnfgResponse.d.ts +0 -80
  999. package/es/zbhd/IZbzdCnfgResponse.js +0 -42
  1000. package/es/zbhd/index.d.ts +0 -3
  1001. package/es/zbhd/index.js +0 -6
  1002. package/es/zbzd/IZbzbZbflResponse.d.ts +0 -216
  1003. package/es/zbzd/IZbzbZbflResponse.js +0 -105
  1004. package/es/zbzd/IZbzdMainResponse.d.ts +0 -282
  1005. package/es/zbzd/IZbzdMainResponse.js +0 -115
  1006. package/es/zbzd/index.d.ts +0 -3
  1007. package/es/zbzd/index.js +0 -6
  1008. package/es/zfht/IZfhtResponse.d.ts +0 -100
  1009. package/es/zfht/IZfhtResponse.js +0 -53
  1010. package/es/zfht/index.d.ts +0 -2
  1011. package/es/zfht/index.js +0 -4
  1012. package/es/zfsq/IZfsqResponse.d.ts +0 -188
  1013. package/es/zfsq/IZfsqResponse.js +0 -97
  1014. package/es/zfsq/index.d.ts +0 -2
  1015. package/es/zfsq/index.js +0 -4
@@ -1,89 +0,0 @@
1
- import { IWldyDataResponse } from './IWldyDataResponse';
2
- import { TWldyPageParaResponse } from './IWldyPageParaResponse';
3
- export interface IWldyPageResponse {
4
- whoBuild: number;
5
- userIndx: number;
6
- pageIndx: number;
7
- parentID: number;
8
- hashCode: number;
9
- dataLevl: number;
10
- dataStat: number;
11
- dataOrdr: number;
12
- dataDate: number;
13
- dataTime: number;
14
- dataHide: number;
15
- dataFrom: number;
16
- kjndKJQJ: number;
17
- dataGUID: string;
18
- mastName: string;
19
- mastGUID: string;
20
- createBy: string;
21
- createAt: number;
22
- updateBy: string;
23
- updateAt: number;
24
- deleteBy: string;
25
- deleteAt: number;
26
- queuesBy: number;
27
- entityID: string;
28
- sysClasc: number;
29
- sysClasn: string;
30
- isSystem: number;
31
- pageCode: number;
32
- pageName: string;
33
- pageMemo: string;
34
- voidName: string;
35
- sql4Void: string;
36
- pageMode: number;
37
- loadType: number;
38
- sysPathc: number;
39
- copyMode: number;
40
- copyFrom: number;
41
- pageUses: string;
42
- pagePara: string;
43
- pageModeText: string;
44
- listData: IWldyDataResponse[];
45
- }
46
- export declare class TWldyPageResponse implements IWldyPageResponse {
47
- whoBuild: number;
48
- userIndx: number;
49
- pageIndx: number;
50
- parentID: number;
51
- hashCode: number;
52
- dataLevl: number;
53
- dataStat: number;
54
- dataOrdr: number;
55
- dataDate: number;
56
- dataTime: number;
57
- dataHide: number;
58
- dataFrom: number;
59
- kjndKJQJ: number;
60
- dataGUID: string;
61
- mastName: string;
62
- mastGUID: string;
63
- createBy: string;
64
- createAt: number;
65
- updateBy: string;
66
- updateAt: number;
67
- deleteBy: string;
68
- deleteAt: number;
69
- queuesBy: number;
70
- entityID: string;
71
- sysClasc: number;
72
- sysClasn: string;
73
- isSystem: number;
74
- pageCode: number;
75
- pageName: string;
76
- pageMemo: string;
77
- voidName: string;
78
- sql4Void: string;
79
- pageMode: number;
80
- loadType: number;
81
- sysPathc: number;
82
- copyMode: number;
83
- copyFrom: number;
84
- pageUses: string;
85
- pagePara: string;
86
- pageModeText: string;
87
- listData: IWldyDataResponse[];
88
- static parseJson(pagePara: string): TWldyPageParaResponse;
89
- }
@@ -1,59 +0,0 @@
1
- import s from "lodash";
2
- import { TWldyPageParaResponse as d } from "./IWldyPageParaResponse.js";
3
- class m {
4
- whoBuild = 0;
5
- userIndx = 0;
6
- pageIndx = 0;
7
- parentID = 0;
8
- hashCode = 0;
9
- dataLevl = 0;
10
- dataStat = 0;
11
- dataOrdr = 0;
12
- dataDate = 0;
13
- dataTime = 0;
14
- dataHide = 0;
15
- dataFrom = 0;
16
- kjndKJQJ = 0;
17
- dataGUID = "";
18
- mastName = "";
19
- mastGUID = "";
20
- createBy = "";
21
- createAt = 0;
22
- updateBy = "";
23
- updateAt = 0;
24
- deleteBy = "";
25
- deleteAt = 0;
26
- queuesBy = 0;
27
- entityID = "";
28
- sysClasc = 0;
29
- sysClasn = "";
30
- isSystem = 0;
31
- pageCode = 0;
32
- pageName = "";
33
- pageMemo = "";
34
- voidName = "";
35
- sql4Void = "";
36
- pageMode = 0;
37
- loadType = 0;
38
- sysPathc = 0;
39
- copyMode = 0;
40
- copyFrom = 0;
41
- pageUses = "";
42
- pagePara = "";
43
- pageModeText = "";
44
- listData = [];
45
- static parseJson(a) {
46
- const e = new d();
47
- if (s.isEmpty(a))
48
- return e;
49
- try {
50
- const t = JSON.parse(a);
51
- return s.merge(e, t);
52
- } catch {
53
- }
54
- return e;
55
- }
56
- }
57
- export {
58
- m as TWldyPageResponse
59
- };
@@ -1,5 +0,0 @@
1
- import { IWldyDataResponse, TWldyDataResponse } from './IWldyDataResponse';
2
- import { IWldyItemResponse, TWldyItemResponse } from './IWldyItemResponse';
3
- import { IWldyPageResponse, TWldyPageResponse } from './IWldyPageResponse';
4
- import { IWldyPageParaResponse, TWldyPageParaResponse, IPaperSize, TPaperSize, listPaper } from './IWldyPageParaResponse';
5
- export { type IPaperSize, type IWldyDataResponse, type IWldyItemResponse, type IWldyPageParaResponse, type IWldyPageResponse, listPaper, TPaperSize, TWldyDataResponse, TWldyItemResponse, TWldyPageParaResponse, TWldyPageResponse };
package/es/wldy/index.js DELETED
@@ -1,12 +0,0 @@
1
- import { TWldyDataResponse as r } from "./IWldyDataResponse.js";
2
- import { TWldyItemResponse as s } from "./IWldyItemResponse.js";
3
- import { TWldyPageResponse as t } from "./IWldyPageResponse.js";
4
- import { TPaperSize as m, TWldyPageParaResponse as P, listPaper as T } from "./IWldyPageParaResponse.js";
5
- export {
6
- m as TPaperSize,
7
- r as TWldyDataResponse,
8
- s as TWldyItemResponse,
9
- P as TWldyPageParaResponse,
10
- t as TWldyPageResponse,
11
- T as listPaper
12
- };
@@ -1,112 +0,0 @@
1
- import { IUnitResponse } from '../core/IUnitResponse';
2
- export interface IWlzfEnvrResponse {
3
- whoBuild: number;
4
- userIndx: number;
5
- envrIndx: number;
6
- parentID: number;
7
- hashCode: number;
8
- dataLevl: number;
9
- dataStat: number;
10
- dataOrdr: number;
11
- dataDate: number;
12
- dataTime: number;
13
- dataHide: number;
14
- dataFrom: number;
15
- kjndKJQJ: number;
16
- dataGUID: string;
17
- mastName: string;
18
- mastGUID: string;
19
- createBy: string;
20
- createAt: number;
21
- updateBy: string;
22
- updateAt: number;
23
- deleteBy: string;
24
- deleteAt: number;
25
- queuesBy: number;
26
- entityID: string;
27
- envrCode: string;
28
- envrName: string;
29
- aczfYzbm: string;
30
- aczfYhbm: string;
31
- aczfKhyh: string;
32
- aczfYhzh: string;
33
- aczfZhmc: string;
34
- aczfMemo: string;
35
- yzzfTxdz: string;
36
- yihaSqkh: string;
37
- yihaSqmm: string;
38
- yihaCzkh: string;
39
- yihaCzmm: string;
40
- yihaTxdz: string;
41
- yihaQmdz: string;
42
- yihaWjdz: string;
43
- aczfLiha: string;
44
- ysdwText: string;
45
- srvr4ftp: string;
46
- port4ftp: string;
47
- user4ftp: string;
48
- pswd4ftp: string;
49
- file4ftp: string;
50
- asCznbcb: number;
51
- asDzyzyh: number;
52
- sourceDW: string;
53
- unitIndx: number;
54
- uses4TLS: number;
55
- listYSDW: IUnitResponse[];
56
- }
57
- export declare class TWlzfEnvrResponse implements IWlzfEnvrResponse {
58
- whoBuild: number;
59
- userIndx: number;
60
- envrIndx: number;
61
- parentID: number;
62
- hashCode: number;
63
- dataLevl: number;
64
- dataStat: number;
65
- dataOrdr: number;
66
- dataDate: number;
67
- dataTime: number;
68
- dataHide: number;
69
- dataFrom: number;
70
- kjndKJQJ: number;
71
- dataGUID: string;
72
- mastName: string;
73
- mastGUID: string;
74
- createBy: string;
75
- createAt: number;
76
- updateBy: string;
77
- updateAt: number;
78
- deleteBy: string;
79
- deleteAt: number;
80
- queuesBy: number;
81
- entityID: string;
82
- envrCode: string;
83
- envrName: string;
84
- /** 甬政编码 对应:const_wlzf.ts中定义的银行编码 */
85
- aczfYzbm: string;
86
- aczfYhbm: string;
87
- aczfKhyh: string;
88
- aczfYhzh: string;
89
- aczfZhmc: string;
90
- aczfMemo: string;
91
- yzzfTxdz: string;
92
- yihaSqkh: string;
93
- yihaSqmm: string;
94
- yihaCzkh: string;
95
- yihaCzmm: string;
96
- yihaTxdz: string;
97
- yihaQmdz: string;
98
- yihaWjdz: string;
99
- aczfLiha: string;
100
- ysdwText: string;
101
- srvr4ftp: string;
102
- port4ftp: string;
103
- user4ftp: string;
104
- pswd4ftp: string;
105
- file4ftp: string;
106
- asCznbcb: number;
107
- asDzyzyh: number;
108
- sourceDW: string;
109
- unitIndx: number;
110
- uses4TLS: number;
111
- listYSDW: IUnitResponse[];
112
- }
@@ -1,59 +0,0 @@
1
- class e {
2
- whoBuild = 0;
3
- userIndx = 0;
4
- envrIndx = 0;
5
- parentID = 0;
6
- hashCode = 0;
7
- dataLevl = 0;
8
- dataStat = 0;
9
- dataOrdr = 0;
10
- dataDate = 0;
11
- dataTime = 0;
12
- dataHide = 0;
13
- dataFrom = 0;
14
- kjndKJQJ = 0;
15
- dataGUID = "";
16
- mastName = "";
17
- mastGUID = "";
18
- createBy = "";
19
- createAt = 0;
20
- updateBy = "";
21
- updateAt = 0;
22
- deleteBy = "";
23
- deleteAt = 0;
24
- queuesBy = 0;
25
- entityID = "";
26
- envrCode = "";
27
- envrName = "";
28
- /** 甬政编码 对应:const_wlzf.ts中定义的银行编码 */
29
- aczfYzbm = "";
30
- aczfYhbm = "";
31
- aczfKhyh = "";
32
- aczfYhzh = "";
33
- aczfZhmc = "";
34
- aczfMemo = "";
35
- yzzfTxdz = "";
36
- yihaSqkh = "";
37
- yihaSqmm = "";
38
- yihaCzkh = "";
39
- yihaCzmm = "";
40
- yihaTxdz = "";
41
- yihaQmdz = "";
42
- yihaWjdz = "";
43
- aczfLiha = "";
44
- ysdwText = "";
45
- srvr4ftp = "";
46
- port4ftp = "";
47
- user4ftp = "";
48
- pswd4ftp = "";
49
- file4ftp = "";
50
- asCznbcb = 0;
51
- asDzyzyh = 0;
52
- sourceDW = "";
53
- unitIndx = 0;
54
- uses4TLS = 0;
55
- listYSDW = [];
56
- }
57
- export {
58
- e as TWlzfEnvrResponse
59
- };
@@ -1,2 +0,0 @@
1
- import { IWlzfEnvrResponse, TWlzfEnvrResponse } from './IWlzfEnvrResponse';
2
- export { type IWlzfEnvrResponse, TWlzfEnvrResponse };
package/es/wlzf/index.js DELETED
@@ -1,4 +0,0 @@
1
- import { TWlzfEnvrResponse as r } from "./IWlzfEnvrResponse.js";
2
- export {
3
- r as TWlzfEnvrResponse
4
- };
@@ -1,14 +0,0 @@
1
- import { IWtuiTodoResponseWithPara } from './IWtuiTodoResponseWithPara';
2
- export interface ITodoResponse {
3
- NOTIFIED: string;
4
- TODONAME: string;
5
- TODOSIZE: number;
6
- TODOTEXT: string;
7
- TODOTYPE: number;
8
- USERUUID: string;
9
- TODO4URL: string;
10
- TODOCONF: IWtuiTodoResponseWithPara;
11
- viewPara: string;
12
- todoFrom: number;
13
- viewIcon: string;
14
- }
@@ -1,84 +0,0 @@
1
- import { IBaseResponse, TBaseResponse } from '../base/IBaseResponse';
2
- import { TSkdwType } from '../const/const_user_acno';
3
- export interface IViewCtrlResponse extends IBaseResponse<IViewCtrlResponse> {
4
- asParent: number;
5
- ctrlCode: string;
6
- ctrlName: string;
7
- ctrlPara: string;
8
- compPath: string;
9
- entityID: string;
10
- formType: string;
11
- jsMethod: string;
12
- metaData: string;
13
- parentID: number;
14
- queuesBy: number;
15
- showCode: string;
16
- showName: string;
17
- uniqueID: number;
18
- userIndx: number;
19
- view4url: string;
20
- viewCode: string;
21
- viewIcon: string;
22
- viewMemo: string;
23
- viewName: string;
24
- viewPara: string;
25
- vitualID: number;
26
- whoBuild: number;
27
- withPara: string;
28
- wtuiMain: number;
29
- labelVal: string;
30
- viewIndx: number;
31
- withParaConv: IViewCtrlResponseWithParaConv;
32
- title: string;
33
- name: string;
34
- icon: string;
35
- }
36
- export declare class TViewCtrlResponse extends TBaseResponse<IViewCtrlResponse> implements IViewCtrlResponse {
37
- asParent: number;
38
- ctrlCode: string;
39
- ctrlName: string;
40
- ctrlPara: string;
41
- compPath: string;
42
- entityID: string;
43
- formType: string;
44
- jsMethod: string;
45
- metaData: string;
46
- parentID: number;
47
- queuesBy: number;
48
- showCode: string;
49
- showName: string;
50
- uniqueID: number;
51
- userIndx: number;
52
- view4url: string;
53
- viewCode: string;
54
- viewIcon: string;
55
- viewMemo: string;
56
- viewName: string;
57
- viewPara: string;
58
- vitualID: number;
59
- whoBuild: number;
60
- withPara: string;
61
- wtuiMain: number;
62
- labelVal: string;
63
- viewIndx: number;
64
- withParaConv: IViewCtrlResponseWithParaConv;
65
- title: string;
66
- name: string;
67
- icon: string;
68
- static toTree(listView: IViewCtrlResponse[]): IViewCtrlResponse[];
69
- static parseJson(withPara: string): IViewCtrlResponseWithParaConv;
70
- }
71
- export interface IViewCtrlResponseWithParaConv {
72
- routerName: string;
73
- auth: boolean;
74
- keepAlive: boolean;
75
- componentName: string;
76
- skdwType: TSkdwType;
77
- }
78
- export declare class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaConv {
79
- routerName: string;
80
- auth: boolean;
81
- keepAlive: boolean;
82
- componentName: string;
83
- skdwType: TSkdwType;
84
- }
@@ -1,64 +0,0 @@
1
- import { d as n } from "../_virtual/index.js";
2
- import { TBaseResponse as s } from "../base/IBaseResponse.js";
3
- import a from "lodash";
4
- import { USER_ACNO_DATA_TYPE_NULL as c } from "../const/const_user_acno.js";
5
- class d extends s {
6
- asParent = 0;
7
- ctrlCode = "";
8
- ctrlName = "";
9
- ctrlPara = "";
10
- compPath = "";
11
- entityID = "";
12
- formType = "";
13
- jsMethod = "";
14
- metaData = "";
15
- parentID = 0;
16
- queuesBy = 0;
17
- showCode = "";
18
- showName = "";
19
- uniqueID = 0;
20
- userIndx = 0;
21
- view4url = "";
22
- viewCode = "";
23
- viewIcon = "";
24
- viewMemo = "";
25
- viewName = "";
26
- viewPara = "";
27
- vitualID = 0;
28
- whoBuild = 0;
29
- withPara = "";
30
- wtuiMain = 0;
31
- labelVal = "";
32
- viewIndx = 0;
33
- withParaConv = new o();
34
- title = "";
35
- name = "";
36
- icon = "";
37
- static toTree(r) {
38
- return r.forEach((e) => {
39
- e.title = e.viewName, e.name = e.view4url, e.icon = `iconfont ${e.viewIcon}`, e.children = [];
40
- }), n.construct(r, { id: "uniqueID", pid: "parentID", children: "children" });
41
- }
42
- static parseJson(r) {
43
- const e = new o();
44
- if (a.isEmpty(r))
45
- return e;
46
- try {
47
- const t = JSON.parse(r);
48
- return a.merge(e, t);
49
- } catch {
50
- }
51
- return e;
52
- }
53
- }
54
- class o {
55
- routerName = "";
56
- auth = !0;
57
- keepAlive = !1;
58
- componentName = "";
59
- skdwType = c;
60
- }
61
- export {
62
- d as TViewCtrlResponse,
63
- o as TViewCtrlResponseWithParaConv
64
- };
@@ -1,52 +0,0 @@
1
- export interface IWtuiColWidthResponse {
2
- whoBuild: number;
3
- userIndx: number;
4
- cnfgIndx: number;
5
- detailID: number;
6
- dataStat: number;
7
- dataHide: number;
8
- dataOrdr: number;
9
- dataFrom: number;
10
- dataType: number;
11
- dataDate: number;
12
- dataTime: number;
13
- createBy: string;
14
- createAt: number;
15
- updateBy: string;
16
- updateAt: number;
17
- deleteBy: string;
18
- deleteAt: number;
19
- queuesBy: number;
20
- colWidth: number;
21
- colHiden: number;
22
- colField: string;
23
- colTitle: string;
24
- colAlign: string;
25
- colFixed: string;
26
- }
27
- export declare class TWtuiColWidthResponse implements IWtuiColWidthResponse {
28
- whoBuild: number;
29
- userIndx: number;
30
- cnfgIndx: number;
31
- detailID: number;
32
- dataStat: number;
33
- dataHide: number;
34
- dataOrdr: number;
35
- dataFrom: number;
36
- dataType: number;
37
- dataDate: number;
38
- dataTime: number;
39
- createBy: string;
40
- createAt: number;
41
- updateBy: string;
42
- updateAt: number;
43
- deleteBy: string;
44
- deleteAt: number;
45
- queuesBy: number;
46
- colWidth: number;
47
- colHiden: number;
48
- colField: string;
49
- colTitle: string;
50
- colAlign: string;
51
- colFixed: string;
52
- }
@@ -1,29 +0,0 @@
1
- class t {
2
- whoBuild = 0;
3
- userIndx = 0;
4
- cnfgIndx = 0;
5
- detailID = 0;
6
- dataStat = 0;
7
- dataHide = 0;
8
- dataOrdr = 0;
9
- dataFrom = 0;
10
- dataType = 0;
11
- dataDate = 0;
12
- dataTime = 0;
13
- createBy = "";
14
- createAt = 0;
15
- updateBy = "";
16
- updateAt = 0;
17
- deleteBy = "";
18
- deleteAt = 0;
19
- queuesBy = 0;
20
- colWidth = 0;
21
- colHiden = 0;
22
- colField = "";
23
- colTitle = "";
24
- colAlign = "";
25
- colFixed = "";
26
- }
27
- export {
28
- t as TWtuiColWidthResponse
29
- };
@@ -1,16 +0,0 @@
1
- export interface IWtuiFormParaResponse {
2
- formVertical: number;
3
- titleColon: number;
4
- titleBold: number;
5
- titleWidth: number;
6
- titleAlign: number;
7
- titleOverFlow: number;
8
- }
9
- export declare class TWtuiFormParaResponse implements IWtuiFormParaResponse {
10
- formVertical: number;
11
- titleColon: number;
12
- titleBold: number;
13
- titleWidth: number;
14
- titleAlign: number;
15
- titleOverFlow: number;
16
- }
@@ -1,17 +0,0 @@
1
- class l {
2
- formVertical = 0;
3
- //表单布局
4
- titleColon = 1;
5
- //标题冒号
6
- titleBold = 0;
7
- //标题加粗
8
- titleWidth = 120;
9
- //标题宽度
10
- titleAlign = 2;
11
- //标题对齐方式
12
- titleOverFlow = 0;
13
- //标题溢出隐藏
14
- }
15
- export {
16
- l as TWtuiFormParaResponse
17
- };
@@ -1,72 +0,0 @@
1
- import { IWtuiFormParaResponse, TWtuiFormParaResponse } from './IWtuiFormParaResponse';
2
- import { IWtuiItemResponse } from './IWtuiItemResponse';
3
- export interface IWtuiFormResponse {
4
- whoBuild: number;
5
- userIndx: number;
6
- formIndx: number;
7
- wtuiZone: number;
8
- wtuiMain: number;
9
- parentID: number;
10
- dataStat: number;
11
- dataHide: number;
12
- dataOrdr: number;
13
- dataFrom: number;
14
- dataDate: number;
15
- dataTime: number;
16
- mastName: string;
17
- mastGUID: string;
18
- createBy: string;
19
- createAt: number;
20
- updateBy: string;
21
- updateAt: number;
22
- deleteBy: string;
23
- deleteAt: number;
24
- entityID: string;
25
- /** 表单名称 */
26
- formName: string;
27
- /** 字段属性 */
28
- formAttr: string;
29
- /** 大小规格 */
30
- sizeMode: string;
31
- /** 是否静态 */
32
- asStatic: number;
33
- /** 参数约定 */
34
- formPara: string;
35
- /** 前端脚本 */
36
- jsMethod: string;
37
- formParaConv: IWtuiFormParaResponse;
38
- listItem: IWtuiItemResponse[];
39
- }
40
- export declare class TWtuiFormResponse implements IWtuiFormResponse {
41
- whoBuild: number;
42
- userIndx: number;
43
- formIndx: number;
44
- wtuiZone: number;
45
- wtuiMain: number;
46
- parentID: number;
47
- dataStat: number;
48
- dataHide: number;
49
- dataOrdr: number;
50
- dataFrom: number;
51
- dataDate: number;
52
- dataTime: number;
53
- mastName: string;
54
- mastGUID: string;
55
- createBy: string;
56
- createAt: number;
57
- updateBy: string;
58
- updateAt: number;
59
- deleteBy: string;
60
- deleteAt: number;
61
- entityID: string;
62
- formName: string;
63
- formAttr: string;
64
- sizeMode: string;
65
- asStatic: number;
66
- formPara: string;
67
- /** 前端脚本 */
68
- jsMethod: string;
69
- formParaConv: IWtuiFormParaResponse;
70
- listItem: IWtuiItemResponse[];
71
- static parseJson(formPara: string): TWtuiFormParaResponse;
72
- }