@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.
- package/.prettierignore +0 -0
- package/.prettierrc +15 -0
- package/eslint.config.js +30 -0
- package/package.json +3 -18
- package/src/antv/IAntvCnfgResponse.ts +69 -0
- package/src/antv/IAntvMainResponse.ts +67 -0
- package/src/antv/IAntvParaResponse.ts +49 -0
- package/src/antv/index.ts +5 -0
- package/src/app/ITab.ts +57 -0
- package/src/app/IUserData.ts +7 -0
- package/src/app/index.ts +4 -0
- package/src/base/IBaseResponse.ts +25 -0
- package/src/bill/IBillCnfgResponse.ts +113 -0
- package/src/bill/IBillMainResponse.ts +284 -0
- package/src/bill/index.ts +4 -0
- package/src/card/ICardBookResponse.ts +123 -0
- package/src/card/ICardDataResponse.ts +249 -0
- package/src/card/ICardFromResponse.ts +68 -0
- package/src/card/ICardFwczResponse.ts +195 -0
- package/src/card/ICardHyhbBillResponse.ts +95 -0
- package/src/card/ICardHyhbResponse.ts +85 -0
- package/src/card/ICardMainFindResponse.ts +95 -0
- package/src/card/ICardMainResponse.ts +762 -0
- package/src/card/ICardRoomResponse.ts +176 -0
- package/src/card/IGblbResponse.ts +133 -0
- package/src/card/IP4pzResponse.ts +68 -0
- package/src/card/ISyszclbgblbResponse.ts +67 -0
- package/src/card/IZcbdResponse.ts +205 -0
- package/src/card/IZccfResponse.ts +232 -0
- package/src/card/IZcczResponse.ts +222 -0
- package/src/card/IZcdbResponse.ts +237 -0
- package/src/card/IZclbResponse.ts +138 -0
- package/src/card/IZczjPropResponse.ts +94 -0
- package/src/card/IZczjResponse.ts +121 -0
- package/src/card/index.ts +62 -0
- package/src/cggz/ICggzBillResponse.ts +69 -0
- package/src/cggz/ICggzMainResponse.ts +188 -0
- package/src/cggz/index.ts +4 -0
- package/src/clas/IClasAttrResponse.ts +69 -0
- package/src/clas/IClasMainResponse.ts +67 -0
- package/src/clas/readme.md +1 -0
- package/src/conf/ICnfgMainResponse.ts +83 -0
- package/src/conf/IConfig.ts +50 -0
- package/src/conf/index.ts +3 -0
- package/src/const/const_align.ts +15 -0
- package/src/const/const_audit.ts +34 -0
- package/src/const/const_bizCode.ts +3 -0
- package/src/const/const_card.ts +6 -0
- package/src/const/const_clas.ts +72 -0
- package/src/const/const_cnfg.ts +92 -0
- package/src/const/const_data_from.ts +14 -0
- package/src/const/const_elem.ts +99 -0
- package/src/const/const_flow.ts +7 -0
- package/src/const/const_gams_mode.ts +5 -0
- package/src/const/const_glpz_mode.ts +2 -0
- package/src/const/const_gzlm.ts +39 -0
- package/src/const/const_hznk.ts +19 -0
- package/src/const/const_hznt.ts +71 -0
- package/src/const/const_module.ts +112 -0
- package/src/const/const_myoa.ts +79 -0
- package/src/const/const_p4pt.ts +8 -0
- package/src/const/const_part.ts +25 -0
- package/src/const/const_stat.ts +400 -0
- package/src/const/const_take_type.ts +9 -0
- package/src/const/const_todo.ts +28 -0
- package/src/const/const_travel.ts +8 -0
- package/src/const/const_type.ts +66 -0
- package/src/const/const_type_name.ts +242 -0
- package/src/const/const_user.ts +2 -0
- package/src/const/const_user_acno.ts +6 -0
- package/src/const/const_wldy_item_type.ts +4 -0
- package/src/const/const_wtui_item_type.ts +24 -0
- package/src/const/const_yiha.ts +32 -0
- package/src/const/const_zbzd.ts +10 -0
- package/src/const/index.ts +60 -0
- package/src/core/ICoreValidResponse.ts +21 -0
- package/src/core/IDeptLiteResponse.ts +43 -0
- package/src/core/IDeptResponse.ts +171 -0
- package/src/core/IDictResponse.ts +183 -0
- package/src/core/IDictResponseConf.ts +36 -0
- package/src/core/IDictResponseDictPara.ts +42 -0
- package/src/core/IEnvrResponse.ts +95 -0
- package/src/core/ILaidResponse.ts +161 -0
- package/src/core/IPartResponse.ts +120 -0
- package/src/core/IPathResponse.ts +133 -0
- package/src/core/ISourceItem.ts +55 -0
- package/src/core/IStypResponse.ts +45 -0
- package/src/core/ISysClasResponse.ts +57 -0
- package/src/core/ISysMenuWithCoreResponse.ts +152 -0
- package/src/core/ISysMenuWithCoreResponseMenuPara.ts +3 -0
- package/src/core/ISysMenuWithExpdResponse.ts +320 -0
- package/src/core/ISysTravelResponse.ts +133 -0
- package/src/core/ITypeResponse.ts +127 -0
- package/src/core/IUnitBindResponse.ts +62 -0
- package/src/core/IUnitResponse.ts +257 -0
- package/src/core/IUnitResponseElemPara.ts +11 -0
- package/src/core/IUserAcnoResponse.ts +182 -0
- package/src/core/IUserFindResponse.ts +140 -0
- package/src/core/IUserLiteResponse.ts +141 -0
- package/src/core/IUserPartResponse.ts +170 -0
- package/src/core/IUserResponse.ts +421 -0
- package/src/core/IUserSzdwResponse.ts +165 -0
- package/src/core/index.ts +77 -0
- package/src/cron/ICronMainResponse.ts +174 -0
- package/src/cron/index.ts +3 -0
- package/src/decorators/DConfigManager.ts +23 -0
- package/src/decorators/DConfigProperty.ts +7 -0
- package/src/decorators/IConfigProperty.ts +32 -0
- package/src/decorators/index.ts +4 -0
- package/src/elem/IElemDataResponse.ts +101 -0
- package/src/elem/IElemElemResponse.ts +102 -0
- package/src/elem/ISysElemResponse.ts +51 -0
- package/src/elem/index.ts +4 -0
- package/src/enums/btnMode.ts +137 -0
- package/src/enums/cardMode.ts +28 -0
- package/src/enums/doneMode.ts +8 -0
- package/src/enums/editMode.ts +22 -0
- package/src/enums/emitterType.ts +6 -0
- package/src/enums/formType.ts +10 -0
- package/src/enums/index.ts +13 -0
- package/src/enums/storeId.ts +12 -0
- package/src/enums/usesStat.ts +14 -0
- package/src/enums/viewMode.ts +7 -0
- package/src/enums/whatDone.ts +30 -0
- package/src/expd/IExpdBAXQResponse.ts +61 -0
- package/src/expd/IExpdCallResponse.ts +57 -0
- package/src/expd/IExpdCardResponse.ts +102 -0
- package/src/expd/IExpdCashResponse.ts +75 -0
- package/src/expd/IExpdHYHBResponse.ts +53 -0
- package/src/expd/IExpdHYMXResponse.ts +61 -0
- package/src/expd/IExpdLfmxResponse.ts +56 -0
- package/src/expd/IExpdMainResponse.ts +552 -0
- package/src/expd/IExpdP2pzResponse.ts +59 -0
- package/src/expd/IExpdP5pzResponse.ts +57 -0
- package/src/expd/IExpdSZMXResponse.ts +66 -0
- package/src/expd/IViewLockResponse.ts +63 -0
- package/src/expd/index.ts +36 -0
- package/src/flow/IFlowCnfgResponse.ts +69 -0
- package/src/flow/IFlowDataResponse.ts +193 -0
- package/src/flow/IFlowDutyNodeParaConv.ts +7 -0
- package/src/flow/IFlowDutyResponse.ts +85 -0
- package/src/flow/IFlowMainResponse.ts +126 -0
- package/src/flow/IFlowNodeResponse.ts +473 -0
- package/src/flow/IFlowTypeResponse.ts +3 -0
- package/src/flow/IFlowUservoidResponse.ts +35 -0
- package/src/flow/IFlowVoidResponse.ts +73 -0
- package/src/flow/index.ts +27 -0
- package/src/gams/IGamsBillResponse.ts +348 -0
- package/src/gams/IGamsCnfgResponse.ts +79 -0
- package/src/gams/IGamsEachResponse.ts +67 -0
- package/src/gams/IGamsItemResponse.ts +109 -0
- package/src/gams/IGamsK0kmResponse.ts +97 -0
- package/src/gams/IGamsK8kmResponse.ts +158 -0
- package/src/gams/IGamsMainResponse.ts +223 -0
- package/src/gams/IGamsTypeResponse.ts +113 -0
- package/src/gams/IGamsWtdwResponse.ts +62 -0
- package/src/gams/index.ts +27 -0
- package/src/gzjg/IGzjgBodyLockResponse.ts +65 -0
- package/src/gzjg/IGzjgGzlmLandResponse.ts +88 -0
- package/src/gzjg/IGzjgGzlmResponse.ts +193 -0
- package/src/gzjg/IGzjgGzlmResponseGzlmPara.ts +25 -0
- package/src/gzjg/IGzjgGzlmWithResponse.ts +88 -0
- package/src/gzjg/IGzjgMainResponse.ts +240 -0
- package/src/gzjg/IGzjgMainResponseGzjgPara.ts +31 -0
- package/src/gzjg/IGzjgMainResponseWithYZPZ.ts +41 -0
- package/src/gzjg/IGzjgQzgsResponse.ts +55 -0
- package/src/gzjg/index.ts +27 -0
- package/src/gztb/IGztbMainResponse.ts +110 -0
- package/src/gztb/index.ts +3 -0
- package/src/gzzd/ICellEditResponse.ts +47 -0
- package/src/gzzd/IGzzdBillResponse.ts +160 -0
- package/src/gzzd/IGzzdLineResponse.ts +19 -0
- package/src/gzzd/IGzzdMainResponse.ts +218 -0
- package/src/gzzd/index.ts +6 -0
- package/src/hzcb/IHzcbMainResponse.ts +263 -0
- package/src/hzcb/IHzcbRypqResponse.ts +258 -0
- package/src/hzcb/IHzcbXmtzBillResponse.ts +105 -0
- package/src/hzcb/IHzcbXmtzResponse.ts +195 -0
- package/src/hzcb/IHzcbXmykResponse.ts +197 -0
- package/src/hzcb/IHzcbZjlyResponse.ts +73 -0
- package/src/hzcb/index.ts +18 -0
- package/src/hznj/IHznjBaseItemResponse.ts +61 -0
- package/src/hznj/IHznjBasePathResponse.ts +45 -0
- package/src/hznj/IHznjBaseResponse.ts +120 -0
- package/src/hznj/index.ts +5 -0
- package/src/hznk/IHznkBaseNbyhResponse.ts +49 -0
- package/src/hznk/IHznkBasePathResponse.ts +47 -0
- package/src/hznk/IHznkBaseResponse.ts +186 -0
- package/src/hznk/IHznkBaseWbdwResponse.ts +55 -0
- package/src/hznk/IHznkBaseWbyhResponse.ts +49 -0
- package/src/hznk/IHznkDataEachResponse.ts +49 -0
- package/src/hznk/IHznkDataItemResponse.ts +49 -0
- package/src/hznk/IHznkDataNbyhResponse.ts +56 -0
- package/src/hznk/IHznkDataPathResponse.ts +47 -0
- package/src/hznk/IHznkDataResponse.ts +293 -0
- package/src/hznk/IHznkFydwBillResponse.ts +53 -0
- package/src/hznk/IHznkFydwFromResponse.ts +47 -0
- package/src/hznk/IHznkFydwItemResponse.ts +49 -0
- package/src/hznk/IHznkFydwPathResponse.ts +47 -0
- package/src/hznk/IHznkFydwResponse.ts +179 -0
- package/src/hznk/IHznkFytqResponse.ts +0 -0
- package/src/hznk/IHznkMainNbyhResponse.ts +49 -0
- package/src/hznk/IHznkMainResponse.ts +208 -0
- package/src/hznk/IHznkMainRwzbResponse.ts +57 -0
- package/src/hznk/IHznkMainWbdwResponse.ts +54 -0
- package/src/hznk/IHznkMainWbyhResponse.ts +49 -0
- package/src/hznk/IHznkNoteFromResponse.ts +47 -0
- package/src/hznk/IHznkNotePathResponse.ts +47 -0
- package/src/hznk/IHznkNoteResponse.ts +101 -0
- package/src/hznk/IHznkXmysItemResponse.ts +49 -0
- package/src/hznk/IHznkXmysResponse.ts +110 -0
- package/src/hznk/IHznkXmysYsxqResponse.ts +51 -0
- package/src/hznk/IHznkYssqResponse.ts +104 -0
- package/src/hznk/index.ts +77 -0
- package/src/hznk/readme.md +1 -0
- package/src/index.ts +98 -0
- package/src/japz/IJapzCnfgResponse.ts +73 -0
- package/src/japz/IJapzItemResponse.ts +69 -0
- package/src/japz/IJapzK0kmResponse.ts +64 -0
- package/src/japz/IJapzK7kmResponse.ts +64 -0
- package/src/japz/IJapzK8kmResponse.ts +71 -0
- package/src/japz/IJapzK9kmResponse.ts +64 -0
- package/src/japz/index.ts +21 -0
- package/src/japz/readme.md +8 -0
- package/src/load/ILoadCellResponse.ts +53 -0
- package/src/load/ILoadDataResponse.ts +54 -0
- package/src/load/ILoadLineResponse.ts +11 -0
- package/src/load/ILoadMainResponse.ts +116 -0
- package/src/load/ILoadZydwResponse.ts +57 -0
- package/src/load/IYqdwResponse.ts +65 -0
- package/src/load/IYqkbResponse.ts +65 -0
- package/src/load/IYqkmResponse.ts +51 -0
- package/src/load/index.ts +27 -0
- package/src/micro/appData.ts +29 -0
- package/src/micro/appName.ts +8 -0
- package/src/micro/appTab.ts +15 -0
- package/src/micro/index.ts +6 -0
- package/src/myoa/IMyoaCashResponse.ts +107 -0
- package/src/myoa/IMyoaMainResponse.ts +479 -0
- package/src/myoa/IMyoaPGDWResponse.ts +49 -0
- package/src/myoa/IMyoaRoomResponse.ts +99 -0
- package/src/myoa/index.ts +6 -0
- package/src/noti/INotiMainResponse.ts +394 -0
- package/src/noti/index.ts +3 -0
- package/src/pzpt/IPzptCnfgMoreResponse.ts +59 -0
- package/src/pzpt/IPzptCnfgResponse.ts +171 -0
- package/src/pzpt/IPzptGlfaResponse.ts +84 -0
- package/src/pzpt/IPzptGlkmResponse.ts +98 -0
- package/src/pzpt/IPzptGlkmfdResponse.ts +59 -0
- package/src/pzpt/IPzptGlkmzdResponse.ts +59 -0
- package/src/pzpt/IPzptItemResponse.ts +104 -0
- package/src/pzpt/IPzptK0kmResponse.ts +69 -0
- package/src/pzpt/IPzptK8kmResponse.ts +183 -0
- package/src/pzpt/IPzptKbkmResponse.ts +139 -0
- package/src/pzpt/IPzptPzpzDataResponse.ts +79 -0
- package/src/pzpt/IPzptPzpzP6pzResponse.ts +136 -0
- package/src/pzpt/IPzptPzpzResponse.ts +116 -0
- package/src/pzpt/IPzptTypeResponse.ts +88 -0
- package/src/pzpt/IPzptUkkmResponse.ts +87 -0
- package/src/pzpt/index.ts +42 -0
- package/src/response/IResponse.ts +48 -0
- package/src/store/dateState.ts +49 -0
- package/src/store/index.ts +8 -0
- package/src/store/menuState.ts +9 -0
- package/src/store/tabsState.ts +13 -0
- package/src/store/userState.ts +50 -0
- package/src/store/viewState.ts +9 -0
- package/src/tabl/ITablDataResponse.ts +72 -0
- package/src/tabl/ITablLineResponse.ts +13 -0
- package/src/tabl/ITablMainResponse.ts +184 -0
- package/src/tabl/index.ts +5 -0
- package/src/take/ITakeBillResponse.ts +144 -0
- package/src/take/ITakeMainResponse.ts +205 -0
- package/src/take/index.ts +4 -0
- package/src/talk/ITalkMainResponse.ts +95 -0
- package/src/task/ITaskMainResponse.ts +121 -0
- package/src/task/index.ts +3 -0
- package/src/wldy/IWldyDataResponse.ts +70 -0
- package/src/wldy/IWldyItemResponse.ts +74 -0
- package/src/wldy/IWldyPageParaResponse.ts +42 -0
- package/src/wldy/IWldyPageResponse.ts +104 -0
- package/src/wldy/index.ts +18 -0
- package/src/wlzf/IWlzfEnvrResponse.ts +116 -0
- package/src/wlzf/index.ts +3 -0
- package/src/wtui/ITodoResponse.ts +15 -0
- package/src/wtui/IViewCtrlResponse.ts +111 -0
- package/src/wtui/IWtuiColWidthResponse.ts +53 -0
- package/src/wtui/IWtuiFormParaResponse.ts +17 -0
- package/src/wtui/IWtuiFormResponse.ts +92 -0
- package/src/wtui/IWtuiItemCalc.ts +36 -0
- package/src/wtui/IWtuiItemEffect.ts +43 -0
- package/src/wtui/IWtuiItemParaResponse.ts +59 -0
- package/src/wtui/IWtuiItemResponse.ts +116 -0
- package/src/wtui/IWtuiMainResponse.ts +114 -0
- package/src/wtui/IWtuiNodeResponse.ts +75 -0
- package/src/wtui/IWtuiOperateResponse.ts +80 -0
- package/src/wtui/IWtuiRootResponse.ts +62 -0
- package/src/wtui/IWtuiTodoResponse.ts +99 -0
- package/src/wtui/IWtuiTodoResponseTodoPara.ts +7 -0
- package/src/wtui/IWtuiTodoResponseWithPara.ts +32 -0
- package/src/wtui/IWtuiUserCnfgResponse.ts +100 -0
- package/src/wtui/IWtuiViewResponse.ts +91 -0
- package/src/wtui/IWtuiZoneResponse.ts +61 -0
- package/src/wtui/index.ts +57 -0
- package/src/wzpz/IWzWithParaResponse.ts +147 -0
- package/src/wzpz/IWzpzCnfgResponse.ts +106 -0
- package/src/wzpz/IWzpzItemResponse.ts +78 -0
- package/src/wzpz/IWzpzK0kmResponse.ts +94 -0
- package/src/wzpz/IWzpzK8kmResponse.ts +141 -0
- package/src/wzpz/IWzpzKbkmResponse.ts +124 -0
- package/src/wzpz/IWzpzPckmResponse.ts +49 -0
- package/src/wzpz/IWzpzTypeResponse.ts +87 -0
- package/src/wzpz/index.ts +27 -0
- package/src/yzcb/ICbjgMainResponse.ts +133 -0
- package/src/yzcb/IYzcbBillResponse.ts +49 -0
- package/src/yzcb/IYzcbMainResponse.ts +189 -0
- package/src/yzcb/index.ts +5 -0
- package/src/yzcg/IYzcgBillResponse.ts +72 -0
- package/src/yzcg/IYzcgGshdResponse.ts +59 -0
- package/src/yzcg/IYzcgLockResponse.ts +41 -0
- package/src/yzcg/IYzcgMainResponse.ts +308 -0
- package/src/yzcg/index.ts +6 -0
- package/src/yzcq/IYzcqMainResponse.ts +120 -0
- package/src/yzcq/index.ts +3 -0
- package/src/yzht/IYzhtBillResponse.ts +188 -0
- package/src/yzht/IYzhtDzmxResponse.ts +57 -0
- package/src/yzht/IYzhtFymxResponse.ts +99 -0
- package/src/yzht/IYzhtGlfdResponse.ts +53 -0
- package/src/yzht/IYzhtGlpzResponse.ts +52 -0
- package/src/yzht/IYzhtGlzdResponse.ts +56 -0
- package/src/yzht/IYzhtMainResponse.ts +677 -0
- package/src/yzht/index.ts +18 -0
- package/src/yzpz/IYzpzCnfgResponse.ts +95 -0
- package/src/yzpz/IYzpzItemResponse.ts +83 -0
- package/src/yzpz/IYzpzK0kmResponse.ts +73 -0
- package/src/yzpz/IYzpzK8kmResponse.ts +162 -0
- package/src/yzpz/IYzpzKbkmResponse.ts +86 -0
- package/src/yzpz/IYzpzTypeResponse.ts +96 -0
- package/src/yzpz/IYzpzTypeResponseConf.ts +36 -0
- package/src/yzpz/index.ts +24 -0
- package/src/zbhd/IZbhdMainResponese.ts +246 -0
- package/src/zbhd/IZbzdCnfgResponse.ts +84 -0
- package/src/zbhd/index.ts +4 -0
- package/src/zbzd/IZbzbZbflResponse.ts +226 -0
- package/src/zbzd/IZbzdMainResponse.ts +321 -0
- package/src/zbzd/index.ts +4 -0
- package/src/zfht/IZfhtResponse.ts +103 -0
- package/src/zfht/index.ts +3 -0
- package/src/zfsq/IZfsqResponse.ts +193 -0
- package/src/zfsq/index.ts +3 -0
- package/tsconfig.json +22 -0
- package/vite.config.ts +33 -0
- package/es/_virtual/index.interface.js +0 -4
- package/es/_virtual/index.js +0 -5
- package/es/_virtual/index2.js +0 -4
- package/es/antv/IAntvCnfgResponse.d.ts +0 -68
- package/es/antv/IAntvCnfgResponse.js +0 -37
- package/es/antv/IAntvMainResponse.d.ts +0 -66
- package/es/antv/IAntvMainResponse.js +0 -36
- package/es/antv/IAntvParaResponse.d.ts +0 -48
- package/es/antv/IAntvParaResponse.js +0 -27
- package/es/antv/index.d.ts +0 -4
- package/es/antv/index.js +0 -8
- package/es/app/ITab.d.ts +0 -51
- package/es/app/ITab.js +0 -30
- package/es/app/IUserData.d.ts +0 -6
- package/es/app/index.d.ts +0 -3
- package/es/app/index.js +0 -5
- package/es/base/IBaseResponse.d.ts +0 -24
- package/es/base/IBaseResponse.js +0 -15
- package/es/bill/IBillCnfgResponse.d.ts +0 -93
- package/es/bill/IBillCnfgResponse.js +0 -51
- package/es/bill/IBillMainResponse.d.ts +0 -240
- package/es/bill/IBillMainResponse.js +0 -132
- package/es/bill/index.d.ts +0 -3
- package/es/bill/index.js +0 -6
- package/es/card/ICardBookResponse.d.ts +0 -119
- package/es/card/ICardBookResponse.js +0 -62
- package/es/card/ICardDataResponse.d.ts +0 -172
- package/es/card/ICardDataResponse.js +0 -104
- package/es/card/ICardFromResponse.d.ts +0 -66
- package/es/card/ICardFromResponse.js +0 -31
- package/es/card/ICardFwczResponse.d.ts +0 -163
- package/es/card/ICardFwczResponse.js +0 -91
- package/es/card/ICardHyhbBillResponse.d.ts +0 -91
- package/es/card/ICardHyhbBillResponse.js +0 -48
- package/es/card/ICardHyhbResponse.d.ts +0 -79
- package/es/card/ICardHyhbResponse.js +0 -41
- package/es/card/ICardMainFindResponse.d.ts +0 -91
- package/es/card/ICardMainFindResponse.js +0 -48
- package/es/card/ICardMainResponse.d.ts +0 -654
- package/es/card/ICardMainResponse.js +0 -261
- package/es/card/ICardRoomResponse.d.ts +0 -171
- package/es/card/ICardRoomResponse.js +0 -88
- package/es/card/IGblbResponse.d.ts +0 -92
- package/es/card/IGblbResponse.js +0 -65
- package/es/card/IP4pzResponse.d.ts +0 -66
- package/es/card/IP4pzResponse.js +0 -38
- package/es/card/ISyszclbgblbResponse.d.ts +0 -57
- package/es/card/ISyszclbgblbResponse.js +0 -35
- package/es/card/IZcbdResponse.d.ts +0 -145
- package/es/card/IZcbdResponse.js +0 -86
- package/es/card/IZccfResponse.d.ts +0 -176
- package/es/card/IZccfResponse.js +0 -98
- package/es/card/IZcczResponse.d.ts +0 -156
- package/es/card/IZcczResponse.js +0 -94
- package/es/card/IZcdbResponse.d.ts +0 -172
- package/es/card/IZcdbResponse.js +0 -99
- package/es/card/IZclbResponse.d.ts +0 -99
- package/es/card/IZclbResponse.js +0 -61
- package/es/card/IZczjPropResponse.d.ts +0 -91
- package/es/card/IZczjPropResponse.js +0 -42
- package/es/card/IZczjResponse.d.ts +0 -101
- package/es/card/IZczjResponse.js +0 -58
- package/es/card/index.d.ts +0 -20
- package/es/card/index.js +0 -41
- package/es/cggz/ICggzBillResponse.d.ts +0 -68
- package/es/cggz/ICggzBillResponse.js +0 -37
- package/es/cggz/ICggzMainResponse.d.ts +0 -178
- package/es/cggz/ICggzMainResponse.js +0 -88
- package/es/cggz/index.d.ts +0 -3
- package/es/cggz/index.js +0 -6
- package/es/clas/IClasAttrResponse.d.ts +0 -64
- package/es/clas/IClasMainResponse.d.ts +0 -62
- package/es/conf/ICnfgMainResponse.d.ts +0 -76
- package/es/conf/ICnfgMainResponse.js +0 -42
- package/es/conf/IConfig.d.ts +0 -47
- package/es/conf/index.d.ts +0 -2
- package/es/conf/index.js +0 -4
- package/es/const/const_align.d.ts +0 -10
- package/es/const/const_align.js +0 -14
- package/es/const/const_audit.d.ts +0 -32
- package/es/const/const_audit.js +0 -11
- package/es/const/const_bizCode.d.ts +0 -2
- package/es/const/const_card.d.ts +0 -5
- package/es/const/const_card.js +0 -8
- package/es/const/const_clas.d.ts +0 -70
- package/es/const/const_clas.js +0 -73
- package/es/const/const_cnfg.d.ts +0 -73
- package/es/const/const_cnfg.js +0 -76
- package/es/const/const_data_from.d.ts +0 -7
- package/es/const/const_data_from.js +0 -9
- package/es/const/const_elem.d.ts +0 -48
- package/es/const/const_elem.js +0 -49
- package/es/const/const_flow.d.ts +0 -7
- package/es/const/const_flow.js +0 -10
- package/es/const/const_gams_mode.d.ts +0 -4
- package/es/const/const_gams_mode.js +0 -7
- package/es/const/const_glpz_mode.d.ts +0 -2
- package/es/const/const_glpz_mode.js +0 -5
- package/es/const/const_gzlm.d.ts +0 -24
- package/es/const/const_gzlm.js +0 -39
- package/es/const/const_hznk.d.ts +0 -17
- package/es/const/const_hznt.d.ts +0 -57
- package/es/const/const_module.d.ts +0 -92
- package/es/const/const_module.js +0 -26
- package/es/const/const_myoa.d.ts +0 -62
- package/es/const/const_myoa.js +0 -32
- package/es/const/const_p4pt.d.ts +0 -6
- package/es/const/const_part.d.ts +0 -17
- package/es/const/const_part.js +0 -20
- package/es/const/const_stat.d.ts +0 -278
- package/es/const/const_stat.js +0 -89
- package/es/const/const_take_type.d.ts +0 -9
- package/es/const/const_take_type.js +0 -9
- package/es/const/const_todo.d.ts +0 -27
- package/es/const/const_todo.js +0 -30
- package/es/const/const_travel.d.ts +0 -4
- package/es/const/const_travel.js +0 -7
- package/es/const/const_type.d.ts +0 -59
- package/es/const/const_type.js +0 -62
- package/es/const/const_type_name.d.ts +0 -210
- package/es/const/const_type_name.js +0 -209
- package/es/const/const_user.d.ts +0 -2
- package/es/const/const_user.js +0 -5
- package/es/const/const_user_acno.d.ts +0 -5
- package/es/const/const_user_acno.js +0 -7
- package/es/const/const_wldy_item_type.d.ts +0 -4
- package/es/const/const_wldy_item_type.js +0 -7
- package/es/const/const_wtui_item_type.d.ts +0 -21
- package/es/const/const_wtui_item_type.js +0 -24
- package/es/const/const_yiha.d.ts +0 -22
- package/es/const/const_yiha.js +0 -25
- package/es/const/const_zbzd.d.ts +0 -8
- package/es/const/const_zbzd.js +0 -11
- package/es/const/index.d.ts +0 -32
- package/es/const/index.js +0 -54
- package/es/core/ICoreValidResponse.d.ts +0 -20
- package/es/core/ICoreValidResponse.js +0 -13
- package/es/core/IDeptLiteResponse.d.ts +0 -33
- package/es/core/IDeptLiteResponse.js +0 -29
- package/es/core/IDeptResponse.d.ts +0 -118
- package/es/core/IDeptResponse.js +0 -79
- package/es/core/IDictResponse.d.ts +0 -132
- package/es/core/IDictResponse.js +0 -94
- package/es/core/IDictResponseConf.d.ts +0 -10
- package/es/core/IDictResponseDictPara.d.ts +0 -41
- package/es/core/IDictResponseDictPara.js +0 -20
- package/es/core/IEnvrResponse.d.ts +0 -94
- package/es/core/IEnvrResponse.js +0 -50
- package/es/core/ILaidResponse.d.ts +0 -114
- package/es/core/ILaidResponse.js +0 -73
- package/es/core/IPartResponse.d.ts +0 -91
- package/es/core/IPartResponse.js +0 -57
- package/es/core/IPathResponse.d.ts +0 -124
- package/es/core/IPathResponse.js +0 -67
- package/es/core/ISourceItem.d.ts +0 -54
- package/es/core/ISourceItem.js +0 -30
- package/es/core/IStypResponse.d.ts +0 -44
- package/es/core/IStypResponse.js +0 -25
- package/es/core/ISysClasResponse.d.ts +0 -56
- package/es/core/ISysClasResponse.js +0 -31
- package/es/core/ISysMenuWithCoreResponse.d.ts +0 -136
- package/es/core/ISysMenuWithCoreResponse.js +0 -79
- package/es/core/ISysMenuWithCoreResponseMenuPara.d.ts +0 -4
- package/es/core/ISysMenuWithCoreResponseMenuPara.js +0 -5
- package/es/core/ISysMenuWithExpdResponse.d.ts +0 -316
- package/es/core/ISysMenuWithExpdResponse.js +0 -157
- package/es/core/ISysTravelResponse.d.ts +0 -99
- package/es/core/ISysTravelResponse.js +0 -73
- package/es/core/ITypeResponse.d.ts +0 -94
- package/es/core/ITypeResponse.js +0 -65
- package/es/core/IUnitBindResponse.d.ts +0 -60
- package/es/core/IUnitBindResponse.js +0 -36
- package/es/core/IUnitResponse.d.ts +0 -189
- package/es/core/IUnitResponse.js +0 -118
- package/es/core/IUnitResponseElemPara.d.ts +0 -10
- package/es/core/IUnitResponseElemPara.js +0 -8
- package/es/core/IUserAcnoResponse.d.ts +0 -164
- package/es/core/IUserAcnoResponse.js +0 -96
- package/es/core/IUserFindResponse.d.ts +0 -55
- package/es/core/IUserFindResponse.js +0 -84
- package/es/core/IUserLiteResponse.d.ts +0 -124
- package/es/core/IUserLiteResponse.js +0 -112
- package/es/core/IUserPartResponse.d.ts +0 -148
- package/es/core/IUserPartResponse.js +0 -92
- package/es/core/IUserResponse.d.ts +0 -355
- package/es/core/IUserResponse.js +0 -192
- package/es/core/IUserSzdwResponse.d.ts +0 -151
- package/es/core/IUserSzdwResponse.js +0 -95
- package/es/core/index.d.ts +0 -24
- package/es/core/index.js +0 -49
- package/es/cron/ICronMainResponse.d.ts +0 -151
- package/es/cron/ICronMainResponse.js +0 -89
- package/es/cron/index.d.ts +0 -2
- package/es/cron/index.js +0 -4
- package/es/decorators/DConfigManager.d.ts +0 -7
- package/es/decorators/DConfigManager.js +0 -15
- package/es/decorators/DConfigProperty.d.ts +0 -2
- package/es/decorators/DConfigProperty.js +0 -8
- package/es/decorators/IConfigProperty.d.ts +0 -21
- package/es/decorators/IConfigProperty.js +0 -4
- package/es/decorators/index.d.ts +0 -4
- package/es/decorators/index.js +0 -8
- package/es/elem/IElemDataResponse.d.ts +0 -90
- package/es/elem/IElemDataResponse.js +0 -59
- package/es/elem/IElemElemResponse.d.ts +0 -98
- package/es/elem/IElemElemResponse.js +0 -57
- package/es/elem/ISysElemResponse.d.ts +0 -50
- package/es/elem/ISysElemResponse.js +0 -28
- package/es/elem/index.d.ts +0 -4
- package/es/elem/index.js +0 -8
- package/es/enums/btnMode.d.ts +0 -135
- package/es/enums/btnMode.js +0 -5
- package/es/enums/cardMode.d.ts +0 -26
- package/es/enums/cardMode.js +0 -4
- package/es/enums/doneMode.d.ts +0 -5
- package/es/enums/doneMode.js +0 -4
- package/es/enums/editMode.d.ts +0 -19
- package/es/enums/editMode.js +0 -4
- package/es/enums/emitterType.d.ts +0 -4
- package/es/enums/emitterType.js +0 -4
- package/es/enums/formType.d.ts +0 -8
- package/es/enums/formType.js +0 -4
- package/es/enums/index.d.ts +0 -10
- package/es/enums/index.js +0 -22
- package/es/enums/storeId.d.ts +0 -11
- package/es/enums/storeId.js +0 -4
- package/es/enums/usesStat.d.ts +0 -12
- package/es/enums/usesStat.js +0 -5
- package/es/enums/viewMode.d.ts +0 -5
- package/es/enums/viewMode.js +0 -4
- package/es/enums/whatDone.d.ts +0 -25
- package/es/expd/IExpdBAXQResponse.d.ts +0 -60
- package/es/expd/IExpdBAXQResponse.js +0 -33
- package/es/expd/IExpdCallResponse.d.ts +0 -56
- package/es/expd/IExpdCallResponse.js +0 -31
- package/es/expd/IExpdCardResponse.d.ts +0 -94
- package/es/expd/IExpdCardResponse.js +0 -58
- package/es/expd/IExpdCashResponse.d.ts +0 -74
- package/es/expd/IExpdCashResponse.js +0 -40
- package/es/expd/IExpdHYHBResponse.d.ts +0 -52
- package/es/expd/IExpdHYHBResponse.js +0 -29
- package/es/expd/IExpdHYMXResponse.d.ts +0 -58
- package/es/expd/IExpdHYMXResponse.js +0 -32
- package/es/expd/IExpdLfmxResponse.d.ts +0 -54
- package/es/expd/IExpdLfmxResponse.js +0 -30
- package/es/expd/IExpdMainResponse.d.ts +0 -513
- package/es/expd/IExpdMainResponse.js +0 -268
- package/es/expd/IExpdP2pzResponse.d.ts +0 -58
- package/es/expd/IExpdP2pzResponse.js +0 -32
- package/es/expd/IExpdP5pzResponse.d.ts +0 -54
- package/es/expd/IExpdP5pzResponse.js +0 -30
- package/es/expd/IExpdSZMXResponse.d.ts +0 -65
- package/es/expd/IViewLockResponse.d.ts +0 -58
- package/es/expd/IViewLockResponse.js +0 -35
- package/es/expd/index.d.ts +0 -12
- package/es/expd/index.js +0 -24
- package/es/flow/IFlowCnfgResponse.d.ts +0 -59
- package/es/flow/IFlowCnfgResponse.js +0 -34
- package/es/flow/IFlowDataResponse.d.ts +0 -142
- package/es/flow/IFlowDataResponse.js +0 -86
- package/es/flow/IFlowDutyNodeParaConv.d.ts +0 -6
- package/es/flow/IFlowDutyNodeParaConv.js +0 -6
- package/es/flow/IFlowDutyResponse.d.ts +0 -63
- package/es/flow/IFlowDutyResponse.js +0 -46
- package/es/flow/IFlowMainResponse.d.ts +0 -116
- package/es/flow/IFlowMainResponse.js +0 -52
- package/es/flow/IFlowNodeResponse.d.ts +0 -233
- package/es/flow/IFlowNodeResponse.js +0 -108
- package/es/flow/IFlowTypeResponse.d.ts +0 -4
- package/es/flow/IFlowTypeResponse.js +0 -5
- package/es/flow/IFlowUservoidResponse.d.ts +0 -34
- package/es/flow/IFlowUservoidResponse.js +0 -20
- package/es/flow/IFlowVoidResponse.d.ts +0 -70
- package/es/flow/IFlowVoidResponse.js +0 -38
- package/es/flow/index.d.ts +0 -9
- package/es/flow/index.js +0 -18
- package/es/gams/IGamsBillResponse.d.ts +0 -321
- package/es/gams/IGamsBillResponse.js +0 -187
- package/es/gams/IGamsCnfgResponse.d.ts +0 -73
- package/es/gams/IGamsCnfgResponse.js +0 -41
- package/es/gams/IGamsEachResponse.d.ts +0 -66
- package/es/gams/IGamsEachResponse.js +0 -37
- package/es/gams/IGamsItemResponse.d.ts +0 -99
- package/es/gams/IGamsItemResponse.js +0 -47
- package/es/gams/IGamsK0kmResponse.d.ts +0 -80
- package/es/gams/IGamsK0kmResponse.js +0 -53
- package/es/gams/IGamsK8kmResponse.d.ts +0 -147
- package/es/gams/IGamsK8kmResponse.js +0 -73
- package/es/gams/IGamsMainResponse.d.ts +0 -217
- package/es/gams/IGamsMainResponse.js +0 -124
- package/es/gams/IGamsTypeResponse.d.ts +0 -103
- package/es/gams/IGamsTypeResponse.js +0 -59
- package/es/gams/IGamsWtdwResponse.d.ts +0 -60
- package/es/gams/index.d.ts +0 -9
- package/es/gams/index.js +0 -18
- package/es/gzjg/IGzjgBodyLockResponse.d.ts +0 -64
- package/es/gzjg/IGzjgBodyLockResponse.js +0 -35
- package/es/gzjg/IGzjgGzlmLandResponse.d.ts +0 -82
- package/es/gzjg/IGzjgGzlmLandResponse.js +0 -62
- package/es/gzjg/IGzjgGzlmResponse.d.ts +0 -156
- package/es/gzjg/IGzjgGzlmResponse.js +0 -101
- package/es/gzjg/IGzjgGzlmResponseGzlmPara.d.ts +0 -24
- package/es/gzjg/IGzjgGzlmResponseGzlmPara.js +0 -15
- package/es/gzjg/IGzjgGzlmWithResponse.d.ts +0 -85
- package/es/gzjg/IGzjgGzlmWithResponse.js +0 -45
- package/es/gzjg/IGzjgMainResponse.d.ts +0 -199
- package/es/gzjg/IGzjgMainResponse.js +0 -116
- package/es/gzjg/IGzjgMainResponseGzjgPara.d.ts +0 -25
- package/es/gzjg/IGzjgMainResponseGzjgPara.js +0 -14
- package/es/gzjg/IGzjgMainResponseWithYZPZ.d.ts +0 -40
- package/es/gzjg/IGzjgMainResponseWithYZPZ.js +0 -23
- package/es/gzjg/IGzjgQzgsResponse.d.ts +0 -54
- package/es/gzjg/IGzjgQzgsResponse.js +0 -30
- package/es/gzjg/index.d.ts +0 -9
- package/es/gzjg/index.js +0 -18
- package/es/gztb/IGztbMainResponse.d.ts +0 -102
- package/es/gztb/IGztbMainResponse.js +0 -52
- package/es/gztb/index.d.ts +0 -2
- package/es/gztb/index.js +0 -4
- package/es/gzzd/ICellEditResponse.d.ts +0 -46
- package/es/gzzd/ICellEditResponse.js +0 -26
- package/es/gzzd/IGzzdBillResponse.d.ts +0 -144
- package/es/gzzd/IGzzdBillResponse.js +0 -74
- package/es/gzzd/IGzzdLineResponse.d.ts +0 -17
- package/es/gzzd/IGzzdLineResponse.js +0 -10
- package/es/gzzd/IGzzdMainResponse.d.ts +0 -174
- package/es/gzzd/IGzzdMainResponse.js +0 -100
- package/es/gzzd/index.d.ts +0 -5
- package/es/gzzd/index.js +0 -10
- package/es/hzcb/IHzcbMainResponse.d.ts +0 -227
- package/es/hzcb/IHzcbMainResponse.js +0 -123
- package/es/hzcb/IHzcbRypqResponse.d.ts +0 -232
- package/es/hzcb/IHzcbRypqResponse.js +0 -129
- package/es/hzcb/IHzcbXmtzBillResponse.d.ts +0 -104
- package/es/hzcb/IHzcbXmtzResponse.d.ts +0 -160
- package/es/hzcb/IHzcbXmtzResponse.js +0 -92
- package/es/hzcb/IHzcbXmykResponse.d.ts +0 -158
- package/es/hzcb/IHzcbXmykResponse.js +0 -93
- package/es/hzcb/IHzcbZjlyResponse.d.ts +0 -70
- package/es/hzcb/IHzcbZjlyResponse.js +0 -36
- package/es/hzcb/index.d.ts +0 -6
- package/es/hzcb/index.js +0 -12
- package/es/hznj/IHznjBaseItemResponse.d.ts +0 -60
- package/es/hznj/IHznjBaseItemResponse.js +0 -33
- package/es/hznj/IHznjBasePathResponse.d.ts +0 -44
- package/es/hznj/IHznjBasePathResponse.js +0 -25
- package/es/hznj/IHznjBaseResponse.d.ts +0 -116
- package/es/hznj/IHznjBaseResponse.js +0 -56
- package/es/hznj/index.d.ts +0 -4
- package/es/hznj/index.js +0 -8
- package/es/hznk/IHznkBaseNbyhResponse.d.ts +0 -48
- package/es/hznk/IHznkBaseNbyhResponse.js +0 -27
- package/es/hznk/IHznkBasePathResponse.d.ts +0 -46
- package/es/hznk/IHznkBasePathResponse.js +0 -26
- package/es/hznk/IHznkBaseResponse.d.ts +0 -154
- package/es/hznk/IHznkBaseResponse.js +0 -80
- package/es/hznk/IHznkBaseWbdwResponse.d.ts +0 -47
- package/es/hznk/IHznkBaseWbdwResponse.js +0 -30
- package/es/hznk/IHznkBaseWbyhResponse.d.ts +0 -48
- package/es/hznk/IHznkBaseWbyhResponse.js +0 -27
- package/es/hznk/IHznkDataEachResponse.d.ts +0 -48
- package/es/hznk/IHznkDataEachResponse.js +0 -27
- package/es/hznk/IHznkDataItemResponse.d.ts +0 -48
- package/es/hznk/IHznkDataItemResponse.js +0 -27
- package/es/hznk/IHznkDataNbyhResponse.d.ts +0 -48
- package/es/hznk/IHznkDataNbyhResponse.js +0 -30
- package/es/hznk/IHznkDataPathResponse.d.ts +0 -46
- package/es/hznk/IHznkDataPathResponse.js +0 -26
- package/es/hznk/IHznkDataResponse.d.ts +0 -249
- package/es/hznk/IHznkDataResponse.js +0 -115
- package/es/hznk/IHznkFydwBillResponse.d.ts +0 -52
- package/es/hznk/IHznkFydwBillResponse.js +0 -29
- package/es/hznk/IHznkFydwFromResponse.d.ts +0 -46
- package/es/hznk/IHznkFydwFromResponse.js +0 -26
- package/es/hznk/IHznkFydwItemResponse.d.ts +0 -48
- package/es/hznk/IHznkFydwItemResponse.js +0 -27
- package/es/hznk/IHznkFydwPathResponse.d.ts +0 -46
- package/es/hznk/IHznkFydwPathResponse.js +0 -26
- package/es/hznk/IHznkFydwResponse.d.ts +0 -140
- package/es/hznk/IHznkFydwResponse.js +0 -77
- package/es/hznk/IHznkFytqResponse.d.ts +0 -1
- package/es/hznk/IHznkMainNbyhResponse.d.ts +0 -48
- package/es/hznk/IHznkMainResponse.d.ts +0 -176
- package/es/hznk/IHznkMainResponse.js +0 -86
- package/es/hznk/IHznkMainRwzbResponse.d.ts +0 -49
- package/es/hznk/IHznkMainWbdwResponse.d.ts +0 -47
- package/es/hznk/IHznkMainWbyhResponse.d.ts +0 -48
- package/es/hznk/IHznkNoteFromResponse.d.ts +0 -46
- package/es/hznk/IHznkNoteFromResponse.js +0 -26
- package/es/hznk/IHznkNotePathResponse.d.ts +0 -46
- package/es/hznk/IHznkNotePathResponse.js +0 -26
- package/es/hznk/IHznkNoteResponse.d.ts +0 -97
- package/es/hznk/IHznkNoteResponse.js +0 -50
- package/es/hznk/IHznkXmysItemResponse.d.ts +0 -48
- package/es/hznk/IHznkXmysItemResponse.js +0 -27
- package/es/hznk/IHznkXmysResponse.d.ts +0 -106
- package/es/hznk/IHznkXmysResponse.js +0 -53
- package/es/hznk/IHznkXmysYsxqResponse.d.ts +0 -50
- package/es/hznk/IHznkXmysYsxqResponse.js +0 -28
- package/es/hznk/IHznkYssqResponse.d.ts +0 -100
- package/es/hznk/IHznkYssqResponse.js +0 -51
- package/es/hznk/index.d.ts +0 -24
- package/es/hznk/index.js +0 -48
- package/es/index.d.ts +0 -47
- package/es/index.js +0 -88
- package/es/japz/IJapzCnfgResponse.d.ts +0 -68
- package/es/japz/IJapzCnfgResponse.js +0 -35
- package/es/japz/IJapzItemResponse.d.ts +0 -66
- package/es/japz/IJapzItemResponse.js +0 -35
- package/es/japz/IJapzK0kmResponse.d.ts +0 -62
- package/es/japz/IJapzK0kmResponse.js +0 -33
- package/es/japz/IJapzK7kmResponse.d.ts +0 -62
- package/es/japz/IJapzK7kmResponse.js +0 -33
- package/es/japz/IJapzK8kmResponse.d.ts +0 -68
- package/es/japz/IJapzK8kmResponse.js +0 -35
- package/es/japz/IJapzK9kmResponse.d.ts +0 -61
- package/es/japz/IJapzK9kmResponse.js +0 -33
- package/es/japz/index.d.ts +0 -7
- package/es/japz/index.js +0 -14
- package/es/load/ILoadCellResponse.d.ts +0 -52
- package/es/load/ILoadCellResponse.js +0 -29
- package/es/load/ILoadDataResponse.d.ts +0 -48
- package/es/load/ILoadDataResponse.js +0 -26
- package/es/load/ILoadLineResponse.d.ts +0 -10
- package/es/load/ILoadLineResponse.js +0 -8
- package/es/load/ILoadMainResponse.d.ts +0 -112
- package/es/load/ILoadMainResponse.js +0 -58
- package/es/load/ILoadZydwResponse.d.ts +0 -54
- package/es/load/ILoadZydwResponse.js +0 -31
- package/es/load/IYqdwResponse.d.ts +0 -63
- package/es/load/IYqdwResponse.js +0 -35
- package/es/load/IYqkbResponse.d.ts +0 -64
- package/es/load/IYqkbResponse.js +0 -35
- package/es/load/IYqkmResponse.d.ts +0 -50
- package/es/load/IYqkmResponse.js +0 -28
- package/es/load/index.d.ts +0 -9
- package/es/load/index.js +0 -18
- package/es/micro/appData.d.ts +0 -24
- package/es/micro/appData.js +0 -15
- package/es/micro/appName.d.ts +0 -6
- package/es/micro/appName.js +0 -4
- package/es/micro/appTab.d.ts +0 -11
- package/es/micro/appTab.js +0 -8
- package/es/micro/index.d.ts +0 -5
- package/es/micro/index.js +0 -9
- package/es/myoa/IMyoaCashResponse.d.ts +0 -59
- package/es/myoa/IMyoaCashResponse.js +0 -45
- package/es/myoa/IMyoaMainResponse.d.ts +0 -341
- package/es/myoa/IMyoaMainResponse.js +0 -224
- package/es/myoa/IMyoaPGDWResponse.d.ts +0 -46
- package/es/myoa/IMyoaPGDWResponse.js +0 -26
- package/es/myoa/IMyoaRoomResponse.d.ts +0 -89
- package/es/myoa/IMyoaRoomResponse.js +0 -53
- package/es/myoa/index.d.ts +0 -5
- package/es/myoa/index.js +0 -10
- package/es/node_modules/.pnpm/@aximario_json-tree@2.2.4/node_modules/@aximario/json-tree/dist/index.interface.js +0 -14
- package/es/node_modules/.pnpm/@aximario_json-tree@2.2.4/node_modules/@aximario/json-tree/dist/index.js +0 -59
- package/es/noti/INotiMainResponse.d.ts +0 -335
- package/es/noti/INotiMainResponse.js +0 -152
- package/es/noti/index.d.ts +0 -2
- package/es/noti/index.js +0 -4
- package/es/pzpt/IPzptCnfgMoreResponse.d.ts +0 -58
- package/es/pzpt/IPzptCnfgMoreResponse.js +0 -32
- package/es/pzpt/IPzptCnfgResponse.d.ts +0 -161
- package/es/pzpt/IPzptCnfgResponse.js +0 -83
- package/es/pzpt/IPzptGlfaResponse.d.ts +0 -82
- package/es/pzpt/IPzptGlfaResponse.js +0 -46
- package/es/pzpt/IPzptGlkmResponse.d.ts +0 -92
- package/es/pzpt/IPzptGlkmResponse.js +0 -48
- package/es/pzpt/IPzptGlkmfdResponse.d.ts +0 -57
- package/es/pzpt/IPzptGlkmzdResponse.d.ts +0 -57
- package/es/pzpt/IPzptItemResponse.d.ts +0 -97
- package/es/pzpt/IPzptItemResponse.js +0 -51
- package/es/pzpt/IPzptK0kmResponse.d.ts +0 -66
- package/es/pzpt/IPzptK0kmResponse.js +0 -36
- package/es/pzpt/IPzptK8kmResponse.d.ts +0 -169
- package/es/pzpt/IPzptK8kmResponse.js +0 -98
- package/es/pzpt/IPzptKbkmResponse.d.ts +0 -125
- package/es/pzpt/IPzptKbkmResponse.js +0 -65
- package/es/pzpt/IPzptPzpzDataResponse.d.ts +0 -78
- package/es/pzpt/IPzptPzpzDataResponse.js +0 -42
- package/es/pzpt/IPzptPzpzP6pzResponse.d.ts +0 -122
- package/es/pzpt/IPzptPzpzP6pzResponse.js +0 -60
- package/es/pzpt/IPzptPzpzResponse.d.ts +0 -114
- package/es/pzpt/IPzptPzpzResponse.js +0 -67
- package/es/pzpt/IPzptTypeResponse.d.ts +0 -85
- package/es/pzpt/IPzptTypeResponse.js +0 -45
- package/es/pzpt/IPzptUkkmResponse.d.ts +0 -82
- package/es/pzpt/IPzptUkkmResponse.js +0 -43
- package/es/pzpt/index.d.ts +0 -14
- package/es/pzpt/index.js +0 -28
- package/es/response/IResponse.d.ts +0 -16
- package/es/store/dateState.d.ts +0 -42
- package/es/store/index.d.ts +0 -7
- package/es/store/index.js +0 -11
- package/es/store/menuState.d.ts +0 -7
- package/es/store/menuState.js +0 -6
- package/es/store/tabsState.d.ts +0 -11
- package/es/store/tabsState.js +0 -9
- package/es/store/userState.d.ts +0 -46
- package/es/store/userState.js +0 -26
- package/es/store/viewState.d.ts +0 -7
- package/es/store/viewState.js +0 -6
- package/es/tabl/ITablDataResponse.d.ts +0 -59
- package/es/tabl/ITablDataResponse.js +0 -32
- package/es/tabl/ITablLineResponse.d.ts +0 -12
- package/es/tabl/ITablLineResponse.js +0 -9
- package/es/tabl/ITablMainResponse.d.ts +0 -148
- package/es/tabl/ITablMainResponse.js +0 -87
- package/es/tabl/index.d.ts +0 -4
- package/es/tabl/index.js +0 -8
- package/es/take/ITakeBillResponse.d.ts +0 -136
- package/es/take/ITakeBillResponse.js +0 -73
- package/es/take/ITakeMainResponse.d.ts +0 -192
- package/es/take/ITakeMainResponse.js +0 -97
- package/es/take/index.d.ts +0 -3
- package/es/take/index.js +0 -6
- package/es/talk/ITalkMainResponse.d.ts +0 -91
- package/es/task/ITaskMainResponse.d.ts +0 -109
- package/es/task/ITaskMainResponse.js +0 -56
- package/es/task/index.d.ts +0 -2
- package/es/task/index.js +0 -4
- package/es/wldy/IWldyDataResponse.d.ts +0 -69
- package/es/wldy/IWldyDataResponse.js +0 -35
- package/es/wldy/IWldyItemResponse.d.ts +0 -72
- package/es/wldy/IWldyItemResponse.js +0 -39
- package/es/wldy/IWldyPageParaResponse.d.ts +0 -19
- package/es/wldy/IWldyPageParaResponse.js +0 -34
- package/es/wldy/IWldyPageResponse.d.ts +0 -89
- package/es/wldy/IWldyPageResponse.js +0 -59
- package/es/wldy/index.d.ts +0 -5
- package/es/wldy/index.js +0 -12
- package/es/wlzf/IWlzfEnvrResponse.d.ts +0 -112
- package/es/wlzf/IWlzfEnvrResponse.js +0 -59
- package/es/wlzf/index.d.ts +0 -2
- package/es/wlzf/index.js +0 -4
- package/es/wtui/ITodoResponse.d.ts +0 -14
- package/es/wtui/IViewCtrlResponse.d.ts +0 -84
- package/es/wtui/IViewCtrlResponse.js +0 -64
- package/es/wtui/IWtuiColWidthResponse.d.ts +0 -52
- package/es/wtui/IWtuiColWidthResponse.js +0 -29
- package/es/wtui/IWtuiFormParaResponse.d.ts +0 -16
- package/es/wtui/IWtuiFormParaResponse.js +0 -17
- package/es/wtui/IWtuiFormResponse.d.ts +0 -72
- package/es/wtui/IWtuiFormResponse.js +0 -48
- package/es/wtui/IWtuiItemCalc.d.ts +0 -34
- package/es/wtui/IWtuiItemCalc.js +0 -8
- package/es/wtui/IWtuiItemEffect.d.ts +0 -38
- package/es/wtui/IWtuiItemEffect.js +0 -24
- package/es/wtui/IWtuiItemParaResponse.d.ts +0 -56
- package/es/wtui/IWtuiItemParaResponse.js +0 -41
- package/es/wtui/IWtuiItemResponse.d.ts +0 -97
- package/es/wtui/IWtuiItemResponse.js +0 -56
- package/es/wtui/IWtuiMainResponse.d.ts +0 -110
- package/es/wtui/IWtuiMainResponse.js +0 -56
- package/es/wtui/IWtuiNodeResponse.d.ts +0 -74
- package/es/wtui/IWtuiNodeResponse.js +0 -40
- package/es/wtui/IWtuiOperateResponse.d.ts +0 -65
- package/es/wtui/IWtuiOperateResponse.js +0 -43
- package/es/wtui/IWtuiRootResponse.d.ts +0 -61
- package/es/wtui/IWtuiRootResponse.js +0 -33
- package/es/wtui/IWtuiTodoResponse.d.ts +0 -74
- package/es/wtui/IWtuiTodoResponse.js +0 -62
- package/es/wtui/IWtuiTodoResponseTodoPara.d.ts +0 -6
- package/es/wtui/IWtuiTodoResponseTodoPara.js +0 -6
- package/es/wtui/IWtuiTodoResponseWithPara.d.ts +0 -31
- package/es/wtui/IWtuiTodoResponseWithPara.js +0 -18
- package/es/wtui/IWtuiUserCnfgResponse.d.ts +0 -95
- package/es/wtui/IWtuiUserCnfgResponse.js +0 -44
- package/es/wtui/IWtuiViewResponse.d.ts +0 -83
- package/es/wtui/IWtuiViewResponse.js +0 -49
- package/es/wtui/IWtuiZoneResponse.d.ts +0 -56
- package/es/wtui/IWtuiZoneResponse.js +0 -29
- package/es/wtui/index.d.ts +0 -22
- package/es/wtui/index.js +0 -36
- package/es/wzpz/IWzWithParaResponse.d.ts +0 -104
- package/es/wzpz/IWzWithParaResponse.js +0 -70
- package/es/wzpz/IWzpzCnfgResponse.d.ts +0 -101
- package/es/wzpz/IWzpzCnfgResponse.js +0 -53
- package/es/wzpz/IWzpzItemResponse.d.ts +0 -77
- package/es/wzpz/IWzpzItemResponse.js +0 -42
- package/es/wzpz/IWzpzK0kmResponse.d.ts +0 -91
- package/es/wzpz/IWzpzK0kmResponse.js +0 -48
- package/es/wzpz/IWzpzK8kmResponse.d.ts +0 -132
- package/es/wzpz/IWzpzK8kmResponse.js +0 -67
- package/es/wzpz/IWzpzKbkmResponse.d.ts +0 -121
- package/es/wzpz/IWzpzKbkmResponse.js +0 -64
- package/es/wzpz/IWzpzPckmResponse.d.ts +0 -48
- package/es/wzpz/IWzpzPckmResponse.js +0 -27
- package/es/wzpz/IWzpzTypeResponse.d.ts +0 -86
- package/es/wzpz/IWzpzTypeResponse.js +0 -46
- package/es/wzpz/index.d.ts +0 -9
- package/es/wzpz/index.js +0 -18
- package/es/yzcb/ICbjgMainResponse.d.ts +0 -131
- package/es/yzcb/ICbjgMainResponse.js +0 -67
- package/es/yzcb/IYzcbBillResponse.d.ts +0 -48
- package/es/yzcb/IYzcbBillResponse.js +0 -27
- package/es/yzcb/IYzcbMainResponse.d.ts +0 -167
- package/es/yzcb/IYzcbMainResponse.js +0 -89
- package/es/yzcb/index.d.ts +0 -4
- package/es/yzcb/index.js +0 -8
- package/es/yzcg/IYzcgBillResponse.d.ts +0 -68
- package/es/yzcg/IYzcgBillResponse.js +0 -40
- package/es/yzcg/IYzcgGshdResponse.d.ts +0 -58
- package/es/yzcg/IYzcgGshdResponse.js +0 -32
- package/es/yzcg/IYzcgLockResponse.d.ts +0 -40
- package/es/yzcg/IYzcgLockResponse.js +0 -23
- package/es/yzcg/IYzcgMainResponse.d.ts +0 -259
- package/es/yzcg/IYzcgMainResponse.js +0 -142
- package/es/yzcg/index.d.ts +0 -5
- package/es/yzcg/index.js +0 -10
- package/es/yzcq/IYzcqMainResponse.d.ts +0 -94
- package/es/yzcq/index.d.ts +0 -2
- package/es/yzht/IYzhtBillResponse.d.ts +0 -179
- package/es/yzht/IYzhtBillResponse.js +0 -92
- package/es/yzht/IYzhtDzmxResponse.d.ts +0 -56
- package/es/yzht/IYzhtFymxResponse.d.ts +0 -98
- package/es/yzht/IYzhtGlfdResponse.d.ts +0 -52
- package/es/yzht/IYzhtGlfdResponse.js +0 -29
- package/es/yzht/IYzhtGlpzResponse.d.ts +0 -48
- package/es/yzht/IYzhtGlpzResponse.js +0 -26
- package/es/yzht/IYzhtGlzdResponse.d.ts +0 -45
- package/es/yzht/IYzhtGlzdResponse.js +0 -32
- package/es/yzht/IYzhtMainResponse.d.ts +0 -631
- package/es/yzht/IYzhtMainResponse.js +0 -315
- package/es/yzht/index.d.ts +0 -6
- package/es/yzht/index.js +0 -12
- package/es/yzpz/IYzpzCnfgResponse.d.ts +0 -93
- package/es/yzpz/IYzpzCnfgResponse.js +0 -49
- package/es/yzpz/IYzpzItemResponse.d.ts +0 -73
- package/es/yzpz/IYzpzItemResponse.js +0 -47
- package/es/yzpz/IYzpzK0kmResponse.d.ts +0 -72
- package/es/yzpz/IYzpzK0kmResponse.js +0 -39
- package/es/yzpz/IYzpzK8kmResponse.d.ts +0 -144
- package/es/yzpz/IYzpzK8kmResponse.js +0 -77
- package/es/yzpz/IYzpzKbkmResponse.d.ts +0 -85
- package/es/yzpz/IYzpzKbkmResponse.js +0 -46
- package/es/yzpz/IYzpzTypeResponse.d.ts +0 -94
- package/es/yzpz/IYzpzTypeResponse.js +0 -50
- package/es/yzpz/IYzpzTypeResponseConf.d.ts +0 -10
- package/es/yzpz/IYzpzTypeResponseConf.js +0 -40
- package/es/yzpz/index.d.ts +0 -8
- package/es/yzpz/index.js +0 -16
- package/es/zbhd/IZbhdMainResponese.d.ts +0 -229
- package/es/zbhd/IZbhdMainResponese.js +0 -115
- package/es/zbhd/IZbzdCnfgResponse.d.ts +0 -80
- package/es/zbhd/IZbzdCnfgResponse.js +0 -42
- package/es/zbhd/index.d.ts +0 -3
- package/es/zbhd/index.js +0 -6
- package/es/zbzd/IZbzbZbflResponse.d.ts +0 -216
- package/es/zbzd/IZbzbZbflResponse.js +0 -105
- package/es/zbzd/IZbzdMainResponse.d.ts +0 -282
- package/es/zbzd/IZbzdMainResponse.js +0 -115
- package/es/zbzd/index.d.ts +0 -3
- package/es/zbzd/index.js +0 -6
- package/es/zfht/IZfhtResponse.d.ts +0 -100
- package/es/zfht/IZfhtResponse.js +0 -53
- package/es/zfht/index.d.ts +0 -2
- package/es/zfht/index.js +0 -4
- package/es/zfsq/IZfsqResponse.d.ts +0 -188
- package/es/zfsq/IZfsqResponse.js +0 -97
- package/es/zfsq/index.d.ts +0 -2
- package/es/zfsq/index.js +0 -4
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
class e {
|
|
2
|
-
whoBuild = 0;
|
|
3
|
-
userIndx = 0;
|
|
4
|
-
cggzIndx = 0;
|
|
5
|
-
parentID = 0;
|
|
6
|
-
hashCode = 0;
|
|
7
|
-
dataLevl = 0;
|
|
8
|
-
dataFrom = 0;
|
|
9
|
-
kjndKJQJ = 0;
|
|
10
|
-
dataStat = 1;
|
|
11
|
-
dataOrdr = 0;
|
|
12
|
-
dataHide = 0;
|
|
13
|
-
dataType = 0;
|
|
14
|
-
dataDate = 0;
|
|
15
|
-
dataTime = 0;
|
|
16
|
-
dataGUID = "";
|
|
17
|
-
mastName = "";
|
|
18
|
-
mastGUID = "";
|
|
19
|
-
createBy = "";
|
|
20
|
-
createAt = 0;
|
|
21
|
-
updateBy = "";
|
|
22
|
-
updateAt = 0;
|
|
23
|
-
deleteBy = "";
|
|
24
|
-
deleteAt = 0;
|
|
25
|
-
queuesBy = 0;
|
|
26
|
-
entityID = "";
|
|
27
|
-
yzcgMain = 0;
|
|
28
|
-
sourceND = 0;
|
|
29
|
-
unitMain = 0;
|
|
30
|
-
deptMain = 0;
|
|
31
|
-
cggzStat = 0;
|
|
32
|
-
flowUndo = 0;
|
|
33
|
-
flowText = "";
|
|
34
|
-
cggzCode = "";
|
|
35
|
-
sqbmText = "";
|
|
36
|
-
sqyhText = "";
|
|
37
|
-
cggzSqrq = 0;
|
|
38
|
-
cggzDljg = 0;
|
|
39
|
-
cggzZbrq = 0;
|
|
40
|
-
outMoney = 0;
|
|
41
|
-
cggzMemo = "";
|
|
42
|
-
menuUUID = "";
|
|
43
|
-
cggzCgml = 0;
|
|
44
|
-
zbdwText = "";
|
|
45
|
-
yzcgZbkz = 0;
|
|
46
|
-
zbdwSize = 0;
|
|
47
|
-
userMain = 0;
|
|
48
|
-
coverURL = "";
|
|
49
|
-
touchURL = "";
|
|
50
|
-
deptName = "";
|
|
51
|
-
sourceBm = "";
|
|
52
|
-
unitNamf = "";
|
|
53
|
-
sourceDw = "";
|
|
54
|
-
lastDate = 0;
|
|
55
|
-
lastTime = 0;
|
|
56
|
-
flowMain = 0;
|
|
57
|
-
flowNode = 0;
|
|
58
|
-
flowStat = 0;
|
|
59
|
-
didFirst = 0;
|
|
60
|
-
lastMemo = "";
|
|
61
|
-
userName = "";
|
|
62
|
-
userGUID = "";
|
|
63
|
-
yzcgCode = "";
|
|
64
|
-
cgxmText = "";
|
|
65
|
-
dljgText = "";
|
|
66
|
-
yzcgCglx = 0;
|
|
67
|
-
menuName = "";
|
|
68
|
-
expdMain = 0;
|
|
69
|
-
yzcgIndx = 0;
|
|
70
|
-
cggzMain = 0;
|
|
71
|
-
cgfsText = "";
|
|
72
|
-
fromOutMoney = 0;
|
|
73
|
-
fromYzhtIndx = 0;
|
|
74
|
-
listSQBM = [];
|
|
75
|
-
listSQYH = [];
|
|
76
|
-
listBill = [];
|
|
77
|
-
listPath = [];
|
|
78
|
-
listZbdw = [];
|
|
79
|
-
listYzcg = [];
|
|
80
|
-
listGams = [];
|
|
81
|
-
listWithGAMS = [];
|
|
82
|
-
listWithYzht = [];
|
|
83
|
-
selectWithGams = [];
|
|
84
|
-
detailId = 0;
|
|
85
|
-
}
|
|
86
|
-
export {
|
|
87
|
-
e as TCggzMainResponse
|
|
88
|
-
};
|
package/es/cggz/index.d.ts
DELETED
package/es/cggz/index.js
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
export interface IClasAttrResponse {
|
|
2
|
-
whoBuild: number;
|
|
3
|
-
userIndx: number;
|
|
4
|
-
attrIndx: number;
|
|
5
|
-
clasMain: 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
|
-
dataCode: string;
|
|
27
|
-
attrCode: string;
|
|
28
|
-
attrName: string;
|
|
29
|
-
attrType: number;
|
|
30
|
-
attrUses: string;
|
|
31
|
-
attrMemo: string;
|
|
32
|
-
}
|
|
33
|
-
export declare class TClasAttrResponse implements IClasAttrResponse {
|
|
34
|
-
whoBuild: number;
|
|
35
|
-
userIndx: number;
|
|
36
|
-
attrIndx: number;
|
|
37
|
-
clasMain: number;
|
|
38
|
-
parentID: number;
|
|
39
|
-
hashCode: number;
|
|
40
|
-
dataLevl: number;
|
|
41
|
-
dataStat: number;
|
|
42
|
-
dataOrdr: number;
|
|
43
|
-
dataDate: number;
|
|
44
|
-
dataTime: number;
|
|
45
|
-
dataHide: number;
|
|
46
|
-
dataFrom: number;
|
|
47
|
-
kjndKJQJ: number;
|
|
48
|
-
dataGUID: string;
|
|
49
|
-
mastName: string;
|
|
50
|
-
mastGUID: string;
|
|
51
|
-
createBy: string;
|
|
52
|
-
createAt: number;
|
|
53
|
-
updateBy: string;
|
|
54
|
-
updateAt: number;
|
|
55
|
-
deleteBy: string;
|
|
56
|
-
deleteAt: number;
|
|
57
|
-
queuesBy: number;
|
|
58
|
-
dataCode: string;
|
|
59
|
-
attrCode: string;
|
|
60
|
-
attrName: string;
|
|
61
|
-
attrType: number;
|
|
62
|
-
attrUses: string;
|
|
63
|
-
attrMemo: string;
|
|
64
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
export interface IClasMainResponse {
|
|
2
|
-
whoBuild: number;
|
|
3
|
-
userIndx: number;
|
|
4
|
-
clasIndx: number;
|
|
5
|
-
parentID: number;
|
|
6
|
-
hashCode: number;
|
|
7
|
-
dataLevl: number;
|
|
8
|
-
dataStat: number;
|
|
9
|
-
dataOrdr: number;
|
|
10
|
-
dataDate: number;
|
|
11
|
-
dataTime: number;
|
|
12
|
-
dataHide: number;
|
|
13
|
-
dataFrom: number;
|
|
14
|
-
kjndKJQJ: number;
|
|
15
|
-
dataGUID: string;
|
|
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
|
-
queuesBy: number;
|
|
25
|
-
attrSize: number;
|
|
26
|
-
clasType: number;
|
|
27
|
-
clasTabl: string;
|
|
28
|
-
clasCode: string;
|
|
29
|
-
clasName: string;
|
|
30
|
-
clasMemo: string;
|
|
31
|
-
}
|
|
32
|
-
export declare class TClasMainResponse implements IClasMainResponse {
|
|
33
|
-
whoBuild: number;
|
|
34
|
-
userIndx: number;
|
|
35
|
-
clasIndx: number;
|
|
36
|
-
parentID: number;
|
|
37
|
-
hashCode: number;
|
|
38
|
-
dataLevl: number;
|
|
39
|
-
dataStat: number;
|
|
40
|
-
dataOrdr: number;
|
|
41
|
-
dataDate: number;
|
|
42
|
-
dataTime: number;
|
|
43
|
-
dataHide: number;
|
|
44
|
-
dataFrom: number;
|
|
45
|
-
kjndKJQJ: number;
|
|
46
|
-
dataGUID: string;
|
|
47
|
-
mastName: string;
|
|
48
|
-
mastGUID: string;
|
|
49
|
-
createBy: string;
|
|
50
|
-
createAt: number;
|
|
51
|
-
updateBy: string;
|
|
52
|
-
updateAt: number;
|
|
53
|
-
deleteBy: string;
|
|
54
|
-
deleteAt: number;
|
|
55
|
-
queuesBy: number;
|
|
56
|
-
attrSize: number;
|
|
57
|
-
clasType: number;
|
|
58
|
-
clasTabl: string;
|
|
59
|
-
clasCode: string;
|
|
60
|
-
clasName: string;
|
|
61
|
-
clasMemo: string;
|
|
62
|
-
}
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
export interface ICnfgMainResponse {
|
|
2
|
-
whoBuild: number;
|
|
3
|
-
userIndx: number;
|
|
4
|
-
cnfgIndx: number;
|
|
5
|
-
cnfgMain: number;
|
|
6
|
-
parentID: number;
|
|
7
|
-
hashCode: number;
|
|
8
|
-
dataLevl: number;
|
|
9
|
-
dataFrom: number;
|
|
10
|
-
dataType: number;
|
|
11
|
-
kjndKJQJ: number;
|
|
12
|
-
isLasted: number;
|
|
13
|
-
dataStat: number;
|
|
14
|
-
dataOrdr: number;
|
|
15
|
-
dataHide: number;
|
|
16
|
-
dataDate: number;
|
|
17
|
-
dataTime: number;
|
|
18
|
-
dataGUID: string;
|
|
19
|
-
userMain: number;
|
|
20
|
-
mastName: string;
|
|
21
|
-
mastGUID: string;
|
|
22
|
-
createBy: string;
|
|
23
|
-
createAt: number;
|
|
24
|
-
updateBy: string;
|
|
25
|
-
updateAt: number;
|
|
26
|
-
deleteBy: string;
|
|
27
|
-
deleteAt: number;
|
|
28
|
-
entityID: string;
|
|
29
|
-
queuesBy: number;
|
|
30
|
-
isPublic: number;
|
|
31
|
-
cnfgCode: string;
|
|
32
|
-
cnfgName: string;
|
|
33
|
-
cnfgUses: string;
|
|
34
|
-
cnfgMemo: string;
|
|
35
|
-
cnfgPara: string;
|
|
36
|
-
cnfg4key: string;
|
|
37
|
-
cnfg4val: string;
|
|
38
|
-
}
|
|
39
|
-
export declare class TCnfgMainResponse implements ICnfgMainResponse {
|
|
40
|
-
whoBuild: number;
|
|
41
|
-
userIndx: number;
|
|
42
|
-
cnfgIndx: number;
|
|
43
|
-
cnfgMain: number;
|
|
44
|
-
parentID: number;
|
|
45
|
-
hashCode: number;
|
|
46
|
-
dataLevl: number;
|
|
47
|
-
dataFrom: number;
|
|
48
|
-
dataType: number;
|
|
49
|
-
kjndKJQJ: number;
|
|
50
|
-
isLasted: number;
|
|
51
|
-
dataStat: number;
|
|
52
|
-
dataOrdr: number;
|
|
53
|
-
dataHide: number;
|
|
54
|
-
dataDate: number;
|
|
55
|
-
dataTime: number;
|
|
56
|
-
dataGUID: string;
|
|
57
|
-
userMain: number;
|
|
58
|
-
mastName: string;
|
|
59
|
-
mastGUID: string;
|
|
60
|
-
createBy: string;
|
|
61
|
-
createAt: number;
|
|
62
|
-
updateBy: string;
|
|
63
|
-
updateAt: number;
|
|
64
|
-
deleteBy: string;
|
|
65
|
-
deleteAt: number;
|
|
66
|
-
entityID: string;
|
|
67
|
-
queuesBy: number;
|
|
68
|
-
isPublic: number;
|
|
69
|
-
cnfgCode: string;
|
|
70
|
-
cnfgName: string;
|
|
71
|
-
cnfgUses: string;
|
|
72
|
-
cnfgMemo: string;
|
|
73
|
-
cnfgPara: string;
|
|
74
|
-
cnfg4key: string;
|
|
75
|
-
cnfg4val: string;
|
|
76
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
class e {
|
|
2
|
-
whoBuild = 0;
|
|
3
|
-
userIndx = 0;
|
|
4
|
-
cnfgIndx = 0;
|
|
5
|
-
cnfgMain = 0;
|
|
6
|
-
//#虚拟字段,回传后端
|
|
7
|
-
parentID = 0;
|
|
8
|
-
hashCode = 0;
|
|
9
|
-
dataLevl = 0;
|
|
10
|
-
dataFrom = 0;
|
|
11
|
-
dataType = 0;
|
|
12
|
-
kjndKJQJ = 0;
|
|
13
|
-
isLasted = 0;
|
|
14
|
-
dataStat = 0;
|
|
15
|
-
dataOrdr = 0;
|
|
16
|
-
dataHide = 0;
|
|
17
|
-
dataDate = 0;
|
|
18
|
-
dataTime = 0;
|
|
19
|
-
dataGUID = "";
|
|
20
|
-
userMain = 0;
|
|
21
|
-
mastName = "";
|
|
22
|
-
mastGUID = "";
|
|
23
|
-
createBy = "";
|
|
24
|
-
createAt = 0;
|
|
25
|
-
updateBy = "";
|
|
26
|
-
updateAt = 0;
|
|
27
|
-
deleteBy = "";
|
|
28
|
-
deleteAt = 0;
|
|
29
|
-
entityID = "";
|
|
30
|
-
queuesBy = 0;
|
|
31
|
-
isPublic = 0;
|
|
32
|
-
cnfgCode = "";
|
|
33
|
-
cnfgName = "";
|
|
34
|
-
cnfgUses = "";
|
|
35
|
-
cnfgMemo = "";
|
|
36
|
-
cnfgPara = "";
|
|
37
|
-
cnfg4key = "";
|
|
38
|
-
cnfg4val = "";
|
|
39
|
-
}
|
|
40
|
-
export {
|
|
41
|
-
e as TCnfgMainResponse
|
|
42
|
-
};
|
package/es/conf/IConfig.d.ts
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
export interface IAboutConfig {
|
|
2
|
-
version: string;
|
|
3
|
-
serviceTel: string;
|
|
4
|
-
serviceQQ: string;
|
|
5
|
-
address: string;
|
|
6
|
-
copyright: string;
|
|
7
|
-
}
|
|
8
|
-
export interface IBaseConfig {
|
|
9
|
-
title: string;
|
|
10
|
-
/**
|
|
11
|
-
* 系统副标题
|
|
12
|
-
* */
|
|
13
|
-
subTitle: string;
|
|
14
|
-
baseURL: string;
|
|
15
|
-
wsURL: string;
|
|
16
|
-
previewURL: string;
|
|
17
|
-
invoiceUrl: string;
|
|
18
|
-
liunxCameraURL: string;
|
|
19
|
-
windowsCameraURL: string;
|
|
20
|
-
adminURL: string;
|
|
21
|
-
ythURL: string;
|
|
22
|
-
verification: boolean;
|
|
23
|
-
passwordCheck: boolean;
|
|
24
|
-
passwordReg: string;
|
|
25
|
-
mobileCheck: boolean;
|
|
26
|
-
usesCaptcha: boolean;
|
|
27
|
-
/**
|
|
28
|
-
* 登入检测部门
|
|
29
|
-
* */
|
|
30
|
-
loginWidthDept: boolean;
|
|
31
|
-
/**
|
|
32
|
-
* 存放地点是否联动部门权限
|
|
33
|
-
* */
|
|
34
|
-
laidWidthDept: boolean;
|
|
35
|
-
/**
|
|
36
|
-
* 在业务中,选择的部门是否为用户权限中的部门
|
|
37
|
-
* */
|
|
38
|
-
get4dept: boolean;
|
|
39
|
-
}
|
|
40
|
-
export interface IPathConfig {
|
|
41
|
-
usesRotatePdf: boolean;
|
|
42
|
-
}
|
|
43
|
-
export interface IConfig {
|
|
44
|
-
baseConfig: IBaseConfig;
|
|
45
|
-
aboutConfig: IAboutConfig;
|
|
46
|
-
pathConfig: IPathConfig;
|
|
47
|
-
}
|
package/es/conf/index.d.ts
DELETED
package/es/conf/index.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const tableLeft = "left";
|
|
2
|
-
export declare const tableCenter = "center";
|
|
3
|
-
export declare const tableRight = "right";
|
|
4
|
-
export declare const CONST_GZLM_FLDQ_居左 = 1;
|
|
5
|
-
export declare const CONST_GZLM_FLDQ_居中 = 2;
|
|
6
|
-
export declare const CONST_GZLM_FLDQ_居右 = 3;
|
|
7
|
-
export declare const listFLDQ: {
|
|
8
|
-
value: number;
|
|
9
|
-
name: string;
|
|
10
|
-
}[];
|
package/es/const/const_align.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
const t = "left", _ = "center", e = "right", L = 1, n = 2, a = 3, c = [
|
|
2
|
-
{ value: 1, name: "居左" },
|
|
3
|
-
{ value: 2, name: "居中" },
|
|
4
|
-
{ value: 3, name: "居右" }
|
|
5
|
-
];
|
|
6
|
-
export {
|
|
7
|
-
n as CONST_GZLM_FLDQ_居中,
|
|
8
|
-
a as CONST_GZLM_FLDQ_居右,
|
|
9
|
-
L as CONST_GZLM_FLDQ_居左,
|
|
10
|
-
c as listFLDQ,
|
|
11
|
-
_ as tableCenter,
|
|
12
|
-
t as tableLeft,
|
|
13
|
-
e as tableRight
|
|
14
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 造价审核
|
|
3
|
-
*/
|
|
4
|
-
export declare const CBJG_ZJSH = "CBJG:ZJSH";
|
|
5
|
-
/**
|
|
6
|
-
* 法务审核
|
|
7
|
-
*/
|
|
8
|
-
export declare const YZHT_FWSH = "YZHT:FWSH";
|
|
9
|
-
/**
|
|
10
|
-
* 某个节点界面添加附件
|
|
11
|
-
*/
|
|
12
|
-
export declare const YZHT_JMFJ = "YZHT:JMFJ";
|
|
13
|
-
/**
|
|
14
|
-
* 财务审核
|
|
15
|
-
*/
|
|
16
|
-
export declare const YZHT_CWSH = "YZHT:CWSH";
|
|
17
|
-
/**
|
|
18
|
-
* 经办人上传
|
|
19
|
-
*/
|
|
20
|
-
export declare const YZHT_JBRSC = "YZHT:JBRSC";
|
|
21
|
-
/**
|
|
22
|
-
* 办公室用印
|
|
23
|
-
*/
|
|
24
|
-
export declare const YZHT_BGSYY = "YZHT:BGSYY";
|
|
25
|
-
/**
|
|
26
|
-
* 议题录入
|
|
27
|
-
*/
|
|
28
|
-
export declare const EXPD_YTLR = "EXPD:YTLR";
|
|
29
|
-
/**
|
|
30
|
-
* 直接派车
|
|
31
|
-
*/
|
|
32
|
-
export declare const YCSQ_ZJPC = "YCSQ:ZJPC";
|
package/es/const/const_audit.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
const Y = "CBJG:ZJSH", H = "YZHT:FWSH", Z = "YZHT:JMFJ", J = "YZHT:CWSH", S = "YZHT:JBRSC", T = "YZHT:BGSYY", C = "EXPD:YTLR", o = "YCSQ:ZJPC";
|
|
2
|
-
export {
|
|
3
|
-
Y as CBJG_ZJSH,
|
|
4
|
-
C as EXPD_YTLR,
|
|
5
|
-
o as YCSQ_ZJPC,
|
|
6
|
-
T as YZHT_BGSYY,
|
|
7
|
-
J as YZHT_CWSH,
|
|
8
|
-
H as YZHT_FWSH,
|
|
9
|
-
S as YZHT_JBRSC,
|
|
10
|
-
Z as YZHT_JMFJ
|
|
11
|
-
};
|
package/es/const/const_card.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export declare const CONST_CARD_DATA_DATA_TYPE_CLBX = 1001;
|
|
2
|
-
export declare const CONST_CARD_DATA_DATA_TYPE_CLJL = 1002;
|
|
3
|
-
export declare const CONST_CARD_DATA_DATA_TYPE_CLLC = 1003;
|
|
4
|
-
export declare const CONST_CARD_DATA_DATA_TYPE_CLNJ = 1004;
|
|
5
|
-
export declare const CONST_CARD_DATA_DATA_TYPE_CLWX = 1005;
|
package/es/const/const_card.js
DELETED
package/es/const/const_clas.d.ts
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
export declare const CONST_SYS_CLASC_NULL = 0;
|
|
2
|
-
export declare const CONST_SYS_CLASC_CORE = 1001;
|
|
3
|
-
export declare const CONST_SYS_CLASC_WTUI = 1002;
|
|
4
|
-
export declare const CONST_SYS_CLASC_CARD = 1003;
|
|
5
|
-
export declare const CONST_SYS_CLASC_ITEM = 1004;
|
|
6
|
-
export declare const CONST_SYS_CLASC_BILL = 1005;
|
|
7
|
-
export declare const CONST_SYS_CLASC_DESK = 1006;
|
|
8
|
-
export declare const CONST_SYS_CLASC_DEAL = 1007;
|
|
9
|
-
export declare const CONST_SYS_CLASC_TAKE = 1008;
|
|
10
|
-
export declare const CONST_SYS_CLASC_PZPT = 1009;
|
|
11
|
-
export declare const CONST_SYS_CLASC_PATN = 1010;
|
|
12
|
-
export declare const CONST_SYS_CLASC_ENGN = 1011;
|
|
13
|
-
export declare const CONST_SYS_CLASC_EXPD = 1012;
|
|
14
|
-
export declare const CONST_SYS_CLASC_FLOW = 1013;
|
|
15
|
-
export declare const CONST_SYS_CLASC_GZTB = 1014;
|
|
16
|
-
export declare const CONST_SYS_CLASC_GZZD = 1015;
|
|
17
|
-
export declare const CONST_SYS_CLASC_WLZF = 1016;
|
|
18
|
-
export declare const CONST_SYS_CLASC_NOTI = 1017;
|
|
19
|
-
export declare const CONST_SYS_CLASC_DISK = 1018;
|
|
20
|
-
export declare const CONST_SYS_CLASC_YZPZ = 1019;
|
|
21
|
-
export declare const CONST_SYS_CLASC_YZBZ = 1020;
|
|
22
|
-
export declare const CONST_SYS_CLASC_TALK = 1021;
|
|
23
|
-
export declare const CONST_SYS_CLASC_STAR = 1022;
|
|
24
|
-
export declare const CONST_SYS_CLASC_ELEM = 1023;
|
|
25
|
-
export declare const CONST_SYS_CLASC_ZBZD = 1024;
|
|
26
|
-
export declare const CONST_SYS_CLASC_ZBHD = 1025;
|
|
27
|
-
export declare const CONST_SYS_CLASC_MYOA = 1026;
|
|
28
|
-
export declare const CONST_SYS_CLASC_JZPZ = 1027;
|
|
29
|
-
export declare const CONST_SYS_CLASC_GAMS = 1028;
|
|
30
|
-
export declare const CONST_SYS_CLASC_HZCB = 1029;
|
|
31
|
-
export declare const CONST_SYS_CLASC_YZHT = 1030;
|
|
32
|
-
export declare const CONST_SYS_CLASC_YZCG = 1031;
|
|
33
|
-
export declare const CONST_SYS_CLASC_YZCB = 1032;
|
|
34
|
-
export declare const CONST_SYS_CLASC_WLDY = 1033;
|
|
35
|
-
export declare const CONST_SYS_CLASC_YZSY = 1034;
|
|
36
|
-
export declare const CONST_SYS_CLASN_NULL = "";
|
|
37
|
-
export declare const CONST_SYS_CLASN_CORE = "\u57FA\u7840\u4EBA\u4E8B";
|
|
38
|
-
export declare const CONST_SYS_CLASN_WTUI = "\u754C\u9762\u5B9A\u4E49";
|
|
39
|
-
export declare const CONST_SYS_CLASN_CARD = "\u56FA\u5B9A\u8D44\u4EA7";
|
|
40
|
-
export declare const CONST_SYS_CLASN_ITEM = "\u8BA1\u6B21\u9879\u76EE";
|
|
41
|
-
export declare const CONST_SYS_CLASN_BILL = "\u7968\u636E\u7BA1\u7406";
|
|
42
|
-
export declare const CONST_SYS_CLASN_DESK = "\u8BA2\u5355\u7BA1\u7406";
|
|
43
|
-
export declare const CONST_SYS_CLASN_DEAL = "\u5DE5\u5355\u7BA1\u7406";
|
|
44
|
-
export declare const CONST_SYS_CLASN_TAKE = "\u7269\u8D44\u7BA1\u7406";
|
|
45
|
-
export declare const CONST_SYS_CLASN_PZPT = "\u51ED\u8BC1\u5E73\u53F0";
|
|
46
|
-
export declare const CONST_SYS_CLASN_PATN = "\u6570\u636E\u8865\u4E01";
|
|
47
|
-
export declare const CONST_SYS_CLASN_ENGN = "\u62A5\u8868\u5F15\u64CE";
|
|
48
|
-
export declare const CONST_SYS_CLASN_EXPD = "\u652F\u51FA\u7BA1\u7406";
|
|
49
|
-
export declare const CONST_SYS_CLASN_FLOW = "\u5BA1\u6838\u6D41\u7A0B";
|
|
50
|
-
export declare const CONST_SYS_CLASN_GZTB = "\u7F51\u4E0A\u586B\u62A5";
|
|
51
|
-
export declare const CONST_SYS_CLASN_GZZD = "\u85AA\u8D44\u7BA1\u7406";
|
|
52
|
-
export declare const CONST_SYS_CLASN_WLZF = "\u7F51\u7EDC\u652F\u4ED8";
|
|
53
|
-
export declare const CONST_SYS_CLASN_NOTI = "\u901A\u77E5\u516C\u544A";
|
|
54
|
-
export declare const CONST_SYS_CLASN_DISK = "\u6587\u4EF6\u7CFB\u7EDF";
|
|
55
|
-
export declare const CONST_SYS_CLASN_YZPZ = "\u9884\u7B97\u8D26\u5957";
|
|
56
|
-
export declare const CONST_SYS_CLASN_YZBZ = "\u9884\u7B97\u7F16\u5236";
|
|
57
|
-
export declare const CONST_SYS_CLASN_TALK = "\u7528\u6237\u7FA4\u7EC4";
|
|
58
|
-
export declare const CONST_SYS_CLASN_STAR = "\u6536\u85CF\u529F\u80FD";
|
|
59
|
-
export declare const CONST_SYS_CLASN_ELEM = "\u6307\u6807\u8981\u7D20";
|
|
60
|
-
export declare const CONST_SYS_CLASN_ZBZD = "\u9884\u7B97\u6307\u6807";
|
|
61
|
-
export declare const CONST_SYS_CLASN_ZBHD = "\u6307\u6807\u989D\u5EA6";
|
|
62
|
-
export declare const CONST_SYS_CLASN_MYOA = "\u5185\u90E8\u529E\u516C";
|
|
63
|
-
export declare const CONST_SYS_CLASN_JZPZ = "\u8D22\u52A1\u5206\u6790";
|
|
64
|
-
export declare const CONST_SYS_CLASN_GAMS = "\u65B0\u7248\u5185\u63A7";
|
|
65
|
-
export declare const CONST_SYS_CLASN_HZCB = "\u676D\u5DDE\u57CE\u5EFA";
|
|
66
|
-
export declare const CONST_SYS_CLASN_YZHT = "\u5408\u540C\u7BA1\u7406";
|
|
67
|
-
export declare const CONST_SYS_CLASN_YZCG = "\u91C7\u8D2D\u7BA1\u7406";
|
|
68
|
-
export declare const CONST_SYS_CLASN_YZCB = "\u9879\u76EE\u7BA1\u7406";
|
|
69
|
-
export declare const CONST_SYS_CLASN_WLDY = "\u7F51\u7EDC\u6253\u5370";
|
|
70
|
-
export declare const CONST_SYS_CLASN_YZSY = "\u7A0E\u6E90\u5206\u6790";
|
package/es/const/const_clas.js
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
const S = 0, _ = 1001, C = 1002, N = 1003, L = 1004, T = 1005, Y = 1006, A = 1007, O = 1008, o = 1009, t = 1010, c = 1011, n = 1012, s = 1013, Z = 1014, D = 1015, E = 1016, B = 1017, P = 1018, G = 1019, I = 1020, K = 1021, M = 1022, W = 1023, H = 1024, R = 1025, F = 1026, U = 1027, J = 1028, X = 1029, e = 1030, p = 1031, r = 1032, x = 1033, a = 1034, b = "", d = "基础人事", f = "界面定义", g = "固定资产", h = "计次项目", i = "票据管理", j = "订单管理", k = "工单管理", l = "物资管理", m = "凭证平台", q = "数据补丁", u = "报表引擎", v = "支出管理", w = "审核流程", y = "网上填报", z = "薪资管理", Q = "网络支付", V = "通知公告", $ = "文件系统", SS = "预算账套", _S = "预算编制", CS = "用户群组", NS = "收藏功能", LS = "指标要素", TS = "预算指标", YS = "指标额度", AS = "内部办公", OS = "财务分析", oS = "新版内控", tS = "杭州城建", cS = "合同管理", nS = "采购管理", sS = "项目管理", ZS = "网络打印", DS = "税源分析";
|
|
2
|
-
export {
|
|
3
|
-
T as CONST_SYS_CLASC_BILL,
|
|
4
|
-
N as CONST_SYS_CLASC_CARD,
|
|
5
|
-
_ as CONST_SYS_CLASC_CORE,
|
|
6
|
-
A as CONST_SYS_CLASC_DEAL,
|
|
7
|
-
Y as CONST_SYS_CLASC_DESK,
|
|
8
|
-
P as CONST_SYS_CLASC_DISK,
|
|
9
|
-
W as CONST_SYS_CLASC_ELEM,
|
|
10
|
-
c as CONST_SYS_CLASC_ENGN,
|
|
11
|
-
n as CONST_SYS_CLASC_EXPD,
|
|
12
|
-
s as CONST_SYS_CLASC_FLOW,
|
|
13
|
-
J as CONST_SYS_CLASC_GAMS,
|
|
14
|
-
Z as CONST_SYS_CLASC_GZTB,
|
|
15
|
-
D as CONST_SYS_CLASC_GZZD,
|
|
16
|
-
X as CONST_SYS_CLASC_HZCB,
|
|
17
|
-
L as CONST_SYS_CLASC_ITEM,
|
|
18
|
-
U as CONST_SYS_CLASC_JZPZ,
|
|
19
|
-
F as CONST_SYS_CLASC_MYOA,
|
|
20
|
-
B as CONST_SYS_CLASC_NOTI,
|
|
21
|
-
S as CONST_SYS_CLASC_NULL,
|
|
22
|
-
t as CONST_SYS_CLASC_PATN,
|
|
23
|
-
o as CONST_SYS_CLASC_PZPT,
|
|
24
|
-
M as CONST_SYS_CLASC_STAR,
|
|
25
|
-
O as CONST_SYS_CLASC_TAKE,
|
|
26
|
-
K as CONST_SYS_CLASC_TALK,
|
|
27
|
-
x as CONST_SYS_CLASC_WLDY,
|
|
28
|
-
E as CONST_SYS_CLASC_WLZF,
|
|
29
|
-
C as CONST_SYS_CLASC_WTUI,
|
|
30
|
-
I as CONST_SYS_CLASC_YZBZ,
|
|
31
|
-
r as CONST_SYS_CLASC_YZCB,
|
|
32
|
-
p as CONST_SYS_CLASC_YZCG,
|
|
33
|
-
e as CONST_SYS_CLASC_YZHT,
|
|
34
|
-
G as CONST_SYS_CLASC_YZPZ,
|
|
35
|
-
a as CONST_SYS_CLASC_YZSY,
|
|
36
|
-
R as CONST_SYS_CLASC_ZBHD,
|
|
37
|
-
H as CONST_SYS_CLASC_ZBZD,
|
|
38
|
-
i as CONST_SYS_CLASN_BILL,
|
|
39
|
-
g as CONST_SYS_CLASN_CARD,
|
|
40
|
-
d as CONST_SYS_CLASN_CORE,
|
|
41
|
-
k as CONST_SYS_CLASN_DEAL,
|
|
42
|
-
j as CONST_SYS_CLASN_DESK,
|
|
43
|
-
$ as CONST_SYS_CLASN_DISK,
|
|
44
|
-
LS as CONST_SYS_CLASN_ELEM,
|
|
45
|
-
u as CONST_SYS_CLASN_ENGN,
|
|
46
|
-
v as CONST_SYS_CLASN_EXPD,
|
|
47
|
-
w as CONST_SYS_CLASN_FLOW,
|
|
48
|
-
oS as CONST_SYS_CLASN_GAMS,
|
|
49
|
-
y as CONST_SYS_CLASN_GZTB,
|
|
50
|
-
z as CONST_SYS_CLASN_GZZD,
|
|
51
|
-
tS as CONST_SYS_CLASN_HZCB,
|
|
52
|
-
h as CONST_SYS_CLASN_ITEM,
|
|
53
|
-
OS as CONST_SYS_CLASN_JZPZ,
|
|
54
|
-
AS as CONST_SYS_CLASN_MYOA,
|
|
55
|
-
V as CONST_SYS_CLASN_NOTI,
|
|
56
|
-
b as CONST_SYS_CLASN_NULL,
|
|
57
|
-
q as CONST_SYS_CLASN_PATN,
|
|
58
|
-
m as CONST_SYS_CLASN_PZPT,
|
|
59
|
-
NS as CONST_SYS_CLASN_STAR,
|
|
60
|
-
l as CONST_SYS_CLASN_TAKE,
|
|
61
|
-
CS as CONST_SYS_CLASN_TALK,
|
|
62
|
-
ZS as CONST_SYS_CLASN_WLDY,
|
|
63
|
-
Q as CONST_SYS_CLASN_WLZF,
|
|
64
|
-
f as CONST_SYS_CLASN_WTUI,
|
|
65
|
-
_S as CONST_SYS_CLASN_YZBZ,
|
|
66
|
-
sS as CONST_SYS_CLASN_YZCB,
|
|
67
|
-
nS as CONST_SYS_CLASN_YZCG,
|
|
68
|
-
cS as CONST_SYS_CLASN_YZHT,
|
|
69
|
-
SS as CONST_SYS_CLASN_YZPZ,
|
|
70
|
-
DS as CONST_SYS_CLASN_YZSY,
|
|
71
|
-
YS as CONST_SYS_CLASN_ZBHD,
|
|
72
|
-
TS as CONST_SYS_CLASN_ZBZD
|
|
73
|
-
};
|