@ningboyz/types 1.2.147 → 1.2.149
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 +30 -45
- package/readme.md +1 -1
- 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/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/IZclbgblbResponse.ts~ +68 -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_wtui_item_type.ts~ +20 -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/const/index.ts~ +29 -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/IDeptResponse.ts~ +162 -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/IViewCtrlResponse.ts~ +93 -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,341 +0,0 @@
|
|
|
1
|
-
import { IPathResponse } from '../core/IPathResponse';
|
|
2
|
-
import { IYzhtMainResponse } from '../yzht/IYzhtMainResponse';
|
|
3
|
-
import { ICardMainResponse } from '../card/ICardMainResponse';
|
|
4
|
-
import { IDeptResponse } from '../core/IDeptResponse';
|
|
5
|
-
import { IUserLiteResponse } from '../core/IUserLiteResponse';
|
|
6
|
-
import { IUserResponse } from '../core/IUserResponse';
|
|
7
|
-
import { TFlowDataResponse } from '../flow/IFlowDataResponse';
|
|
8
|
-
import { IYzcgMainResponse } from '../yzcg/IYzcgMainResponse';
|
|
9
|
-
import { IMyoaCashResponse } from './IMyoaCashResponse';
|
|
10
|
-
import { IMyoaPGDWResponse } from './IMyoaPGDWResponse';
|
|
11
|
-
import { TCore } from '../index.ts';
|
|
12
|
-
import { IMyoaRoomResponse, TMyoaRoomResponse } from './IMyoaRoomResponse.ts';
|
|
13
|
-
export interface IMyoaMainResponse {
|
|
14
|
-
typeName: string;
|
|
15
|
-
whoBuild: number;
|
|
16
|
-
userIndx: number;
|
|
17
|
-
myoaIndx: number;
|
|
18
|
-
parentID: number;
|
|
19
|
-
hashCode: number;
|
|
20
|
-
dataLevl: number;
|
|
21
|
-
dataFrom: number;
|
|
22
|
-
kjndKJQJ: number;
|
|
23
|
-
dataStat: number;
|
|
24
|
-
dataOrdr: number;
|
|
25
|
-
dataDate: number;
|
|
26
|
-
dataTime: number;
|
|
27
|
-
dataHide: number;
|
|
28
|
-
dataGUID: string;
|
|
29
|
-
mastName: string;
|
|
30
|
-
mastGUID: string;
|
|
31
|
-
createBy: string;
|
|
32
|
-
createAt: number;
|
|
33
|
-
updateBy: string;
|
|
34
|
-
updateAt: number;
|
|
35
|
-
deleteBy: string;
|
|
36
|
-
deleteAt: number;
|
|
37
|
-
queuesBy: number;
|
|
38
|
-
entityID: string;
|
|
39
|
-
myoaCode: string;
|
|
40
|
-
myoaType: number;
|
|
41
|
-
myoaStat: number;
|
|
42
|
-
myoaDate: number;
|
|
43
|
-
unitMain: number;
|
|
44
|
-
unitNamf: string;
|
|
45
|
-
deptMain: number;
|
|
46
|
-
dictMain: number;
|
|
47
|
-
startOut: number;
|
|
48
|
-
endedOut: number;
|
|
49
|
-
totalOut: number;
|
|
50
|
-
canClose: number;
|
|
51
|
-
closedBy: string;
|
|
52
|
-
closedAt: number;
|
|
53
|
-
myoaUses: string;
|
|
54
|
-
myoaMemo: string;
|
|
55
|
-
sourceND: number;
|
|
56
|
-
sourceDW: string;
|
|
57
|
-
flowText: string;
|
|
58
|
-
flowUndo: number;
|
|
59
|
-
outMoney: number;
|
|
60
|
-
yzcgCgxm: string;
|
|
61
|
-
yzcgCgfs: number;
|
|
62
|
-
yzcgCgmj: number;
|
|
63
|
-
yzcgCode: string;
|
|
64
|
-
yzcgMain: number;
|
|
65
|
-
dddwText: string;
|
|
66
|
-
dldwText: string;
|
|
67
|
-
yzcgZbkz: number;
|
|
68
|
-
yzcgZbbh: string;
|
|
69
|
-
editedBy: string;
|
|
70
|
-
fileType: number;
|
|
71
|
-
fileText: string;
|
|
72
|
-
dzyzType: number;
|
|
73
|
-
dzyzText: string;
|
|
74
|
-
yzhtHtbh: string;
|
|
75
|
-
yzhtQdrq: number;
|
|
76
|
-
yzhtYsrq: number;
|
|
77
|
-
yzhtCode: string;
|
|
78
|
-
yzhtMain: number;
|
|
79
|
-
autoType: number;
|
|
80
|
-
menuUUID: string;
|
|
81
|
-
coverURL: string;
|
|
82
|
-
touchURL: string;
|
|
83
|
-
flowMain: number;
|
|
84
|
-
flowNode: number;
|
|
85
|
-
cgfsText: string;
|
|
86
|
-
cgmjText: string;
|
|
87
|
-
sqbmText: string;
|
|
88
|
-
sqyhText: string;
|
|
89
|
-
userName: string;
|
|
90
|
-
userMain: number;
|
|
91
|
-
authStat: number;
|
|
92
|
-
autoCpbh: string;
|
|
93
|
-
authDate: number;
|
|
94
|
-
wldyMain: number;
|
|
95
|
-
startTxt: string;
|
|
96
|
-
startLat: string;
|
|
97
|
-
endedTxt: string;
|
|
98
|
-
endedLat: string;
|
|
99
|
-
cardType: number;
|
|
100
|
-
rangeOut: number;
|
|
101
|
-
mobileID: string;
|
|
102
|
-
usesNbyh: number;
|
|
103
|
-
nbyhText: string;
|
|
104
|
-
userSize: number;
|
|
105
|
-
cardUses: number;
|
|
106
|
-
autoMode: number;
|
|
107
|
-
deptName: string;
|
|
108
|
-
lastMemo: string;
|
|
109
|
-
usesDzqz: number;
|
|
110
|
-
flowUser: string;
|
|
111
|
-
cardUnitText: string;
|
|
112
|
-
cardDeptText: string;
|
|
113
|
-
cardTypeText: string;
|
|
114
|
-
cardUsesText: string;
|
|
115
|
-
cardJldwText: string;
|
|
116
|
-
cardLaidText: string;
|
|
117
|
-
cardUserText: string;
|
|
118
|
-
autoTypeText: string;
|
|
119
|
-
rangeOutText: string;
|
|
120
|
-
autoModeText: string;
|
|
121
|
-
deviceD1: number /** 有无投影 {0:否,1:有} */;
|
|
122
|
-
pageNums: string /** 盖章页码 */;
|
|
123
|
-
/**
|
|
124
|
-
* 公物仓
|
|
125
|
-
* */
|
|
126
|
-
laidMain: number;
|
|
127
|
-
/**
|
|
128
|
-
* 公物仓名称
|
|
129
|
-
* */
|
|
130
|
-
laidText: string;
|
|
131
|
-
/**
|
|
132
|
-
* 入仓/领用数量
|
|
133
|
-
* */
|
|
134
|
-
cardSize: number;
|
|
135
|
-
/**
|
|
136
|
-
* 入仓/领用原值
|
|
137
|
-
* */
|
|
138
|
-
totalVal: number;
|
|
139
|
-
/**
|
|
140
|
-
* 入仓/领用理由
|
|
141
|
-
* */
|
|
142
|
-
reasonBy: string;
|
|
143
|
-
/**
|
|
144
|
-
* 领用标志
|
|
145
|
-
* */
|
|
146
|
-
mrokStat: number;
|
|
147
|
-
/**
|
|
148
|
-
* 车辆名称
|
|
149
|
-
*/
|
|
150
|
-
cardName: string;
|
|
151
|
-
/**
|
|
152
|
-
* 入仓/领用原卡片
|
|
153
|
-
* */
|
|
154
|
-
listBeforeAsset: ICardMainResponse[];
|
|
155
|
-
/**
|
|
156
|
-
* 入仓/领用新卡片
|
|
157
|
-
* */
|
|
158
|
-
listAfterAsset: ICardMainResponse[];
|
|
159
|
-
listLock: IMyoaMainResponse[];
|
|
160
|
-
listCard: ICardMainResponse[];
|
|
161
|
-
/** 会议室 */
|
|
162
|
-
listChat: IMyoaRoomResponse[];
|
|
163
|
-
listPath: IPathResponse[];
|
|
164
|
-
listSQBM: IDeptResponse[];
|
|
165
|
-
listSQYH: IUserResponse[];
|
|
166
|
-
listNBYH: IUserResponse[];
|
|
167
|
-
/** 用车申请时,指定为listCard.cardName, 会议申请时, 指定为listChat.RoomName */
|
|
168
|
-
cardText: string;
|
|
169
|
-
listYZHT: IYzhtMainResponse[];
|
|
170
|
-
listYZCG: IYzcgMainResponse[];
|
|
171
|
-
listCash: IMyoaCashResponse[];
|
|
172
|
-
listDDDW: IUserLiteResponse[];
|
|
173
|
-
listDLDW: IUserLiteResponse[];
|
|
174
|
-
listPGDW: IMyoaPGDWResponse[];
|
|
175
|
-
detailId: number;
|
|
176
|
-
}
|
|
177
|
-
export declare class TMyoaMainResponse implements IMyoaMainResponse {
|
|
178
|
-
typeName: string;
|
|
179
|
-
whoBuild: number;
|
|
180
|
-
userIndx: number;
|
|
181
|
-
myoaIndx: number;
|
|
182
|
-
parentID: number;
|
|
183
|
-
hashCode: number;
|
|
184
|
-
dataLevl: number;
|
|
185
|
-
dataFrom: number;
|
|
186
|
-
kjndKJQJ: number;
|
|
187
|
-
dataStat: number;
|
|
188
|
-
dataOrdr: number;
|
|
189
|
-
dataDate: number;
|
|
190
|
-
dataTime: number;
|
|
191
|
-
dataHide: number;
|
|
192
|
-
dataGUID: string;
|
|
193
|
-
mastName: string;
|
|
194
|
-
mastGUID: string;
|
|
195
|
-
createBy: string;
|
|
196
|
-
createAt: number;
|
|
197
|
-
updateBy: string;
|
|
198
|
-
updateAt: number;
|
|
199
|
-
deleteBy: string;
|
|
200
|
-
deleteAt: number;
|
|
201
|
-
queuesBy: number;
|
|
202
|
-
entityID: string;
|
|
203
|
-
myoaCode: string;
|
|
204
|
-
myoaType: number;
|
|
205
|
-
myoaStat: number;
|
|
206
|
-
myoaDate: number;
|
|
207
|
-
menuUUID: string;
|
|
208
|
-
unitMain: number;
|
|
209
|
-
unitNamf: string;
|
|
210
|
-
deptMain: number;
|
|
211
|
-
dictMain: number;
|
|
212
|
-
/** 拟公告时间 */
|
|
213
|
-
startOut: number;
|
|
214
|
-
endedOut: number;
|
|
215
|
-
totalOut: number;
|
|
216
|
-
canClose: number;
|
|
217
|
-
closedBy: string;
|
|
218
|
-
closedAt: number;
|
|
219
|
-
myoaUses: string;
|
|
220
|
-
myoaMemo: string;
|
|
221
|
-
sourceND: number;
|
|
222
|
-
sourceDW: string;
|
|
223
|
-
flowText: string;
|
|
224
|
-
flowUndo: number;
|
|
225
|
-
/**
|
|
226
|
-
* 用车申请时,指定为listCard.cardName, 会议申请时, 指定为listChat.RoomName
|
|
227
|
-
*/
|
|
228
|
-
cardText: string;
|
|
229
|
-
/** 预算资金 */
|
|
230
|
-
outMoney: number;
|
|
231
|
-
/** 采购项目名称 */
|
|
232
|
-
yzcgCgxm: string;
|
|
233
|
-
/** 采购方式 */
|
|
234
|
-
yzcgCgfs: number;
|
|
235
|
-
/** 拟公告媒介 */
|
|
236
|
-
yzcgCgmj: number;
|
|
237
|
-
yzcgCode: string;
|
|
238
|
-
yzcgMain: number;
|
|
239
|
-
dddwText: string;
|
|
240
|
-
dldwText: string;
|
|
241
|
-
yzcgZbkz: number;
|
|
242
|
-
/** 招标编号 */
|
|
243
|
-
yzcgZbbh: string;
|
|
244
|
-
editedBy: string;
|
|
245
|
-
/** 合同编号 */
|
|
246
|
-
yzhtHtbh: string;
|
|
247
|
-
/** 签订日期 */
|
|
248
|
-
yzhtQdrq: number;
|
|
249
|
-
/** 验收日期 */
|
|
250
|
-
yzhtYsrq: number;
|
|
251
|
-
/** 合同单号 */
|
|
252
|
-
yzhtCode: string;
|
|
253
|
-
/** 合同标识 */
|
|
254
|
-
yzhtMain: number;
|
|
255
|
-
autoType: number;
|
|
256
|
-
coverURL: string;
|
|
257
|
-
touchURL: string;
|
|
258
|
-
flowMain: number;
|
|
259
|
-
flowNode: number;
|
|
260
|
-
cgfsText: string;
|
|
261
|
-
cgmjText: string;
|
|
262
|
-
sqbmText: string;
|
|
263
|
-
sqyhText: string;
|
|
264
|
-
userName: string;
|
|
265
|
-
userMain: number;
|
|
266
|
-
/** 文件类型 */
|
|
267
|
-
fileType: number;
|
|
268
|
-
fileText: string;
|
|
269
|
-
/** 印章类型 */
|
|
270
|
-
dzyzType: number;
|
|
271
|
-
dzyzText: string;
|
|
272
|
-
/** 盖章页码 */
|
|
273
|
-
pageNums: string;
|
|
274
|
-
/** 有无投影 {0:否,1:有} */
|
|
275
|
-
deviceD1: number;
|
|
276
|
-
authStat: number;
|
|
277
|
-
autoCpbh: string;
|
|
278
|
-
authDate: number;
|
|
279
|
-
wldyMain: number;
|
|
280
|
-
startTxt: string;
|
|
281
|
-
startLat: string;
|
|
282
|
-
endedTxt: string;
|
|
283
|
-
endedLat: string;
|
|
284
|
-
cardType: number;
|
|
285
|
-
cardUses: number;
|
|
286
|
-
rangeOut: number;
|
|
287
|
-
mobileID: string;
|
|
288
|
-
usesNbyh: number;
|
|
289
|
-
nbyhText: string;
|
|
290
|
-
userSize: number;
|
|
291
|
-
autoMode: number;
|
|
292
|
-
deptName: string;
|
|
293
|
-
lastMemo: string;
|
|
294
|
-
usesDzqz: number;
|
|
295
|
-
flowUser: string;
|
|
296
|
-
cardUnitText: string;
|
|
297
|
-
cardDeptText: string;
|
|
298
|
-
cardTypeText: string;
|
|
299
|
-
cardUsesText: string;
|
|
300
|
-
cardJldwText: string;
|
|
301
|
-
cardLaidText: string;
|
|
302
|
-
cardUserText: string;
|
|
303
|
-
autoTypeText: string;
|
|
304
|
-
rangeOutText: string;
|
|
305
|
-
autoModeText: string;
|
|
306
|
-
cardName: string;
|
|
307
|
-
laidMain: number;
|
|
308
|
-
laidText: string;
|
|
309
|
-
cardSize: number;
|
|
310
|
-
totalVal: number;
|
|
311
|
-
reasonBy: string;
|
|
312
|
-
mrokStat: number;
|
|
313
|
-
listBeforeAsset: ICardMainResponse[];
|
|
314
|
-
listAfterAsset: ICardMainResponse[];
|
|
315
|
-
listLock: IMyoaMainResponse[];
|
|
316
|
-
listCard: ICardMainResponse[];
|
|
317
|
-
/** 会议室 */
|
|
318
|
-
listChat: TMyoaRoomResponse[];
|
|
319
|
-
listPath: IPathResponse[];
|
|
320
|
-
listSQBM: IDeptResponse[];
|
|
321
|
-
listSQYH: IUserResponse[];
|
|
322
|
-
listNBYH: IUserResponse[];
|
|
323
|
-
listYZHT: IYzhtMainResponse[];
|
|
324
|
-
listYZCG: IYzcgMainResponse[];
|
|
325
|
-
listCash: IMyoaCashResponse[];
|
|
326
|
-
listDDDW: IUserLiteResponse[];
|
|
327
|
-
listDLDW: IUserLiteResponse[];
|
|
328
|
-
listPGDW: IMyoaPGDWResponse[];
|
|
329
|
-
detailId: number;
|
|
330
|
-
constructor(card: keyof TMyoaMainResponse | object);
|
|
331
|
-
static toFlowDatas(card: TMyoaMainResponse[]): TFlowDataResponse[];
|
|
332
|
-
static toFlowData(myoa: TMyoaMainResponse): TFlowDataResponse;
|
|
333
|
-
static getAuthStat(myoa: TMyoaMainResponse): string;
|
|
334
|
-
static getMyoaStat(myoa: TMyoaMainResponse): string;
|
|
335
|
-
/**
|
|
336
|
-
* 用来记录操作
|
|
337
|
-
* */
|
|
338
|
-
static toTravel(card: IMyoaMainResponse): TCore.ISysTravelResponse;
|
|
339
|
-
/** 转换成记录日志需要的数据(第一层,不包含菜单) */
|
|
340
|
-
static toTravelData(card?: IMyoaMainResponse | IMyoaMainResponse[]): TCore.ISysTravelResponse[];
|
|
341
|
-
}
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
import { CONST_FLOW_NODE_STAT_VOID as s } from "../const/const_flow.js";
|
|
2
|
-
import { CONST_STR_TODO_TYPE_TO_HTQD_WAIT as i } from "../const/const_todo.js";
|
|
3
|
-
import { TFlowDataResponse as o } from "../flow/IFlowDataResponse.js";
|
|
4
|
-
import a from "lodash";
|
|
5
|
-
import "../_virtual/index.js";
|
|
6
|
-
import { TSysTravelResponse as r } from "../core/ISysTravelResponse.js";
|
|
7
|
-
import "../yzpz/IYzpzTypeResponseConf.js";
|
|
8
|
-
class D {
|
|
9
|
-
typeName = "TMyoaMainResponse";
|
|
10
|
-
whoBuild = 0;
|
|
11
|
-
userIndx = 0;
|
|
12
|
-
myoaIndx = 0;
|
|
13
|
-
parentID = 0;
|
|
14
|
-
hashCode = 0;
|
|
15
|
-
dataLevl = 0;
|
|
16
|
-
dataFrom = 0;
|
|
17
|
-
kjndKJQJ = 0;
|
|
18
|
-
dataStat = 0;
|
|
19
|
-
dataOrdr = 0;
|
|
20
|
-
dataDate = 0;
|
|
21
|
-
dataTime = 0;
|
|
22
|
-
dataHide = 0;
|
|
23
|
-
dataGUID = "";
|
|
24
|
-
mastName = "";
|
|
25
|
-
mastGUID = "";
|
|
26
|
-
createBy = "";
|
|
27
|
-
createAt = 0;
|
|
28
|
-
updateBy = "";
|
|
29
|
-
updateAt = 0;
|
|
30
|
-
deleteBy = "";
|
|
31
|
-
deleteAt = 0;
|
|
32
|
-
queuesBy = 0;
|
|
33
|
-
entityID = "";
|
|
34
|
-
myoaCode = "";
|
|
35
|
-
myoaType = 0;
|
|
36
|
-
myoaStat = 0;
|
|
37
|
-
myoaDate = 0;
|
|
38
|
-
menuUUID = "";
|
|
39
|
-
unitMain = 0;
|
|
40
|
-
unitNamf = "";
|
|
41
|
-
deptMain = 0;
|
|
42
|
-
dictMain = 0;
|
|
43
|
-
/** 拟公告时间 */
|
|
44
|
-
startOut = 0;
|
|
45
|
-
endedOut = 0;
|
|
46
|
-
totalOut = 0;
|
|
47
|
-
canClose = 0;
|
|
48
|
-
closedBy = "";
|
|
49
|
-
closedAt = 0;
|
|
50
|
-
myoaUses = "";
|
|
51
|
-
myoaMemo = "";
|
|
52
|
-
sourceND = 0;
|
|
53
|
-
sourceDW = "";
|
|
54
|
-
flowText = "";
|
|
55
|
-
flowUndo = 0;
|
|
56
|
-
/**
|
|
57
|
-
* 用车申请时,指定为listCard.cardName, 会议申请时, 指定为listChat.RoomName
|
|
58
|
-
*/
|
|
59
|
-
cardText = "";
|
|
60
|
-
/** 预算资金 */
|
|
61
|
-
outMoney = 0;
|
|
62
|
-
/** 采购项目名称 */
|
|
63
|
-
yzcgCgxm = "";
|
|
64
|
-
/** 采购方式 */
|
|
65
|
-
yzcgCgfs = 0;
|
|
66
|
-
/** 拟公告媒介 */
|
|
67
|
-
yzcgCgmj = 0;
|
|
68
|
-
yzcgCode = "";
|
|
69
|
-
yzcgMain = 0;
|
|
70
|
-
dddwText = "";
|
|
71
|
-
dldwText = "";
|
|
72
|
-
yzcgZbkz = 0;
|
|
73
|
-
/** 招标编号 */
|
|
74
|
-
yzcgZbbh = "";
|
|
75
|
-
editedBy = "";
|
|
76
|
-
/** 合同编号 */
|
|
77
|
-
yzhtHtbh = "";
|
|
78
|
-
/** 签订日期 */
|
|
79
|
-
yzhtQdrq = 0;
|
|
80
|
-
/** 验收日期 */
|
|
81
|
-
yzhtYsrq = 0;
|
|
82
|
-
/** 合同单号 */
|
|
83
|
-
yzhtCode = "";
|
|
84
|
-
/** 合同标识 */
|
|
85
|
-
yzhtMain = 0;
|
|
86
|
-
autoType = 0;
|
|
87
|
-
coverURL = "";
|
|
88
|
-
touchURL = "";
|
|
89
|
-
flowMain = 0;
|
|
90
|
-
flowNode = 0;
|
|
91
|
-
cgfsText = "";
|
|
92
|
-
cgmjText = "";
|
|
93
|
-
sqbmText = "";
|
|
94
|
-
sqyhText = "";
|
|
95
|
-
userName = "";
|
|
96
|
-
userMain = 0;
|
|
97
|
-
/** 文件类型 */
|
|
98
|
-
fileType = 0;
|
|
99
|
-
fileText = "";
|
|
100
|
-
/** 印章类型 */
|
|
101
|
-
dzyzType = 0;
|
|
102
|
-
dzyzText = "";
|
|
103
|
-
/** 盖章页码 */
|
|
104
|
-
pageNums = "";
|
|
105
|
-
/** 有无投影 {0:否,1:有} */
|
|
106
|
-
deviceD1 = 0;
|
|
107
|
-
authStat = 0;
|
|
108
|
-
autoCpbh = "";
|
|
109
|
-
authDate = 0;
|
|
110
|
-
wldyMain = 0;
|
|
111
|
-
startTxt = "";
|
|
112
|
-
startLat = "";
|
|
113
|
-
endedTxt = "";
|
|
114
|
-
endedLat = "";
|
|
115
|
-
cardType = 0;
|
|
116
|
-
cardUses = 0;
|
|
117
|
-
rangeOut = 0;
|
|
118
|
-
mobileID = "";
|
|
119
|
-
usesNbyh = 0;
|
|
120
|
-
nbyhText = "";
|
|
121
|
-
userSize = 0;
|
|
122
|
-
autoMode = 0;
|
|
123
|
-
deptName = "";
|
|
124
|
-
lastMemo = "";
|
|
125
|
-
usesDzqz = 0;
|
|
126
|
-
flowUser = "";
|
|
127
|
-
cardUnitText = "";
|
|
128
|
-
cardDeptText = "";
|
|
129
|
-
cardTypeText = "";
|
|
130
|
-
cardUsesText = "";
|
|
131
|
-
cardJldwText = "";
|
|
132
|
-
cardLaidText = "";
|
|
133
|
-
cardUserText = "";
|
|
134
|
-
autoTypeText = "";
|
|
135
|
-
rangeOutText = "";
|
|
136
|
-
autoModeText = "";
|
|
137
|
-
cardName = "";
|
|
138
|
-
laidMain = 0;
|
|
139
|
-
laidText = "";
|
|
140
|
-
cardSize = 0;
|
|
141
|
-
totalVal = 0;
|
|
142
|
-
reasonBy = "";
|
|
143
|
-
mrokStat = 0;
|
|
144
|
-
listBeforeAsset = [];
|
|
145
|
-
listAfterAsset = [];
|
|
146
|
-
listLock = [];
|
|
147
|
-
listCard = [];
|
|
148
|
-
/** 会议室 */
|
|
149
|
-
listChat = [];
|
|
150
|
-
listPath = [];
|
|
151
|
-
listSQBM = [];
|
|
152
|
-
listSQYH = [];
|
|
153
|
-
listNBYH = [];
|
|
154
|
-
listYZHT = [];
|
|
155
|
-
listYZCG = [];
|
|
156
|
-
listCash = [];
|
|
157
|
-
listDDDW = [];
|
|
158
|
-
listDLDW = [];
|
|
159
|
-
listPGDW = [];
|
|
160
|
-
// 评审审批时的评审代表
|
|
161
|
-
//虚拟字段
|
|
162
|
-
detailId = 0;
|
|
163
|
-
constructor(e) {
|
|
164
|
-
e && a.merge(this, a.pick(e, Object.keys(this)));
|
|
165
|
-
}
|
|
166
|
-
static toFlowDatas(e) {
|
|
167
|
-
return e.map((t) => this.toFlowData(t));
|
|
168
|
-
}
|
|
169
|
-
//#进入流程
|
|
170
|
-
static toFlowData(e) {
|
|
171
|
-
const t = new o();
|
|
172
|
-
return t.whoBuild = e.whoBuild, t.userIndx = e.userIndx, t.flowMain = e.flowMain, t.flowNode = e.flowNode, t.notified = i, t.entityID = e.entityID, t.billMain = e.myoaIndx, t.billCode = e.myoaCode, t.billMemo = e.myoaMemo, t.billUses = "", t.ysxmText = "", t.outMoney = 0, t.createAt = e.createAt, t.mastName = e.mastName, t.createBy = e.createBy, t.unitMain = e.unitMain, t.menuUUID = e.menuUUID, t.deptMain = e.deptMain, t.flowStat = e.myoaStat, t;
|
|
173
|
-
}
|
|
174
|
-
//#取车状态
|
|
175
|
-
static getAuthStat(e) {
|
|
176
|
-
let t = "";
|
|
177
|
-
if (e.myoaStat !== s)
|
|
178
|
-
return "";
|
|
179
|
-
switch (e.authStat) {
|
|
180
|
-
case 1:
|
|
181
|
-
t = "待取车";
|
|
182
|
-
break;
|
|
183
|
-
case 2:
|
|
184
|
-
t = "待还车", e.canClose === 1 && (t = "已还车");
|
|
185
|
-
break;
|
|
186
|
-
}
|
|
187
|
-
return t;
|
|
188
|
-
}
|
|
189
|
-
//#流程状态
|
|
190
|
-
static getMyoaStat(e) {
|
|
191
|
-
let t = "";
|
|
192
|
-
if (e.dataHide === 1)
|
|
193
|
-
return "";
|
|
194
|
-
switch (e.myoaStat) {
|
|
195
|
-
case -2:
|
|
196
|
-
t = "已作废";
|
|
197
|
-
break;
|
|
198
|
-
case -1:
|
|
199
|
-
t = "已退回";
|
|
200
|
-
break;
|
|
201
|
-
case 1:
|
|
202
|
-
t = "待审核", e.lastMemo !== "" && (t = `待审核:${e.lastMemo}`);
|
|
203
|
-
break;
|
|
204
|
-
case 2:
|
|
205
|
-
t = "已终审";
|
|
206
|
-
break;
|
|
207
|
-
}
|
|
208
|
-
return t;
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* 用来记录操作
|
|
212
|
-
* */
|
|
213
|
-
static toTravel(e) {
|
|
214
|
-
const t = new r();
|
|
215
|
-
return t.whoBuild = e.whoBuild, t.flowMain = e.flowMain, t.flowNode = e.flowNode, t.billUUID = e.entityID, t.billMain = e.myoaIndx, t.billCode = e.myoaCode, t.mastName = e.mastName, t.createBy = e.createBy, t.menuUUID = e.menuUUID, t;
|
|
216
|
-
}
|
|
217
|
-
/** 转换成记录日志需要的数据(第一层,不包含菜单) */
|
|
218
|
-
static toTravelData(e) {
|
|
219
|
-
return a.isNil(e) ? [] : a.isArray(e) ? e.map((t) => this.toTravel(t)) : [this.toTravel(e)];
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
export {
|
|
223
|
-
D as TMyoaMainResponse
|
|
224
|
-
};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
export interface IMyoaPGDWResponse {
|
|
2
|
-
whoBuild: number;
|
|
3
|
-
userIndx: number;
|
|
4
|
-
myoaIndx: number;
|
|
5
|
-
detailID: number;
|
|
6
|
-
dataStat: number;
|
|
7
|
-
dataHide: number;
|
|
8
|
-
dataOrdr: number;
|
|
9
|
-
dataFrom: number;
|
|
10
|
-
dataDate: number;
|
|
11
|
-
dataTime: number;
|
|
12
|
-
createBy: string;
|
|
13
|
-
createAt: number;
|
|
14
|
-
updateBy: string;
|
|
15
|
-
updateAt: number;
|
|
16
|
-
deleteBy: string;
|
|
17
|
-
deleteAt: number;
|
|
18
|
-
queuesBy: number;
|
|
19
|
-
userName: string;
|
|
20
|
-
userIdcd: string;
|
|
21
|
-
mobileID: string;
|
|
22
|
-
reasonBy: string;
|
|
23
|
-
}
|
|
24
|
-
export declare class TMyoaPGDWResponse implements IMyoaPGDWResponse {
|
|
25
|
-
whoBuild: number;
|
|
26
|
-
userIndx: number;
|
|
27
|
-
myoaIndx: number;
|
|
28
|
-
detailID: number;
|
|
29
|
-
dataStat: number;
|
|
30
|
-
dataHide: number;
|
|
31
|
-
dataOrdr: number;
|
|
32
|
-
dataFrom: number;
|
|
33
|
-
dataDate: number;
|
|
34
|
-
dataTime: number;
|
|
35
|
-
createBy: string;
|
|
36
|
-
createAt: number;
|
|
37
|
-
updateBy: string;
|
|
38
|
-
updateAt: number;
|
|
39
|
-
deleteBy: string;
|
|
40
|
-
deleteAt: number;
|
|
41
|
-
queuesBy: number;
|
|
42
|
-
userName: string;
|
|
43
|
-
userIdcd: string;
|
|
44
|
-
mobileID: string;
|
|
45
|
-
reasonBy: string;
|
|
46
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
class a {
|
|
2
|
-
whoBuild = 0;
|
|
3
|
-
userIndx = 0;
|
|
4
|
-
myoaIndx = 0;
|
|
5
|
-
detailID = 0;
|
|
6
|
-
dataStat = 0;
|
|
7
|
-
dataHide = 0;
|
|
8
|
-
dataOrdr = 0;
|
|
9
|
-
dataFrom = 0;
|
|
10
|
-
dataDate = 0;
|
|
11
|
-
dataTime = 0;
|
|
12
|
-
createBy = "";
|
|
13
|
-
createAt = 0;
|
|
14
|
-
updateBy = "";
|
|
15
|
-
updateAt = 0;
|
|
16
|
-
deleteBy = "";
|
|
17
|
-
deleteAt = 0;
|
|
18
|
-
queuesBy = 0;
|
|
19
|
-
userName = "";
|
|
20
|
-
userIdcd = "";
|
|
21
|
-
mobileID = "";
|
|
22
|
-
reasonBy = "";
|
|
23
|
-
}
|
|
24
|
-
export {
|
|
25
|
-
a as TMyoaPGDWResponse
|
|
26
|
-
};
|