@kengic/vue 0.30.1-beta.83 → 0.30.1-beta.87
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/api/WMS/Controllers/DescriptionController/List.ts +84 -0
- package/api/WMS/Controllers/DescriptionController/ListByCodeNamesAndCodeValues.ts +21 -0
- package/api/WMS/Controllers/DescriptionController/index.ts +2 -0
- package/api/WMS/Controllers/SqlClientController/Execute.ts +21 -0
- package/api/WMS/Controllers/SqlClientController/ExecutePage.ts +21 -0
- package/api/WMS/Controllers/SqlClientController/index.ts +2 -0
- package/api/WMS/Controllers/SysPermissionController/List.ts +117 -0
- package/api/WMS/Controllers/SysPermissionController/index.ts +1 -0
- package/api/WMS/Controllers/VarConfigDescriptionController/Add.ts +21 -0
- package/api/WMS/Controllers/VarConfigDescriptionController/ListByFormId.ts +21 -0
- package/api/WMS/Controllers/VarConfigPossibilityController/ExecuteQuery.ts +36 -0
- package/api/WMS/Controllers/VarConfigPossibilityController/index.ts +1 -0
- package/api/WMS/Controllers/VarController/GetAll.ts +21 -0
- package/api/WMS/Controllers/VarController/index.ts +1 -0
- package/api/WMS/Controllers/VarDdaController/Create.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/GetResultSetMetadataFromSql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateCopySql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateCreateSql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateDeleteSql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateFrmId.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateSearchSql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateUpdateSql.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/ValidateVarButtonVarName.ts +21 -0
- package/api/WMS/Controllers/VarDdaController/index.ts +9 -0
- package/api/WMS/Controllers/VarGridMasterController/QueryByID.ts +36 -0
- package/api/WMS/Controllers/VarGridMasterController/Update.ts +21 -0
- package/api/WMS/Controllers/VarGridMasterController/index.ts +2 -0
- package/api/WMS/Controllers/VarProfileMasterController/QueryByID.ts +36 -0
- package/api/WMS/Controllers/VarProfileMasterController/index.ts +1 -0
- package/api/WMS/Controllers/VarVariableController/Delete.ts +21 -0
- package/api/WMS/Controllers/VarVariableController/index.ts +1 -0
- package/api/WMS/Controllers/WarehouseController/ListVO.ts +45 -0
- package/api/WMS/Controllers/WorkstationController/List.ts +45 -0
- package/api/WMS/Controllers/WorkstationController/index.ts +1 -0
- package/api/WMS/index.ts +2 -0
- package/api/WMS/models.ts +2113 -0
- package/api/api.ts +1 -0
- package/api/def.ts +1 -0
- package/api/index.ts +2 -0
- package/bin/bin.mjs +57 -0
- package/bin/postinstall.mjs +69 -0
- package/component/KgAppSelect/KgAppSelect.event.ts +52 -0
- package/component/KgAppSelect/KgAppSelect.hooks.ts +50 -0
- package/component/KgAppSelect/KgAppSelect.less +30 -0
- package/component/KgAppSelect/KgAppSelect.store.ts +162 -0
- package/component/KgAppSelect/KgAppSelect.tsx +60 -0
- package/component/KgAppSelect/index.ts +4 -0
- package/component/KgButton/KgButton.Copy.tsx +143 -0
- package/component/KgButton/KgButton.Create.tsx +208 -0
- package/component/KgButton/KgButton.Delete.tsx +156 -0
- package/component/KgButton/KgButton.Export.tsx +294 -0
- package/component/KgButton/KgButton.Import.tsx +247 -0
- package/component/KgButton/KgButton.ImportTemplate.tsx +214 -0
- package/component/KgButton/KgButton.Item.tsx +128 -0
- package/component/KgButton/KgButton.Other.tsx +292 -0
- package/component/KgButton/KgButton.Search.tsx +146 -0
- package/component/KgButton/KgButton.Update.tsx +210 -0
- package/component/KgButton/KgButton.event.ts +157 -0
- package/component/KgButton/KgButton.hooks.ts +117 -0
- package/component/KgButton/KgButton.less +187 -0
- package/component/KgButton/KgButton.model.tsx +39 -0
- package/component/KgButton/KgButton.store.ts +333 -0
- package/component/KgButton/KgButton.tsx +221 -0
- package/component/KgCanvas/KgCanvas.ContextMenu.tsx +181 -0
- package/component/KgCanvas/KgCanvas.ToolbarButton.Fullscreen.tsx +80 -0
- package/component/KgCanvas/KgCanvas.ToolbarButton.Mode.tsx +68 -0
- package/component/KgCanvas/KgCanvas.ToolbarButton.OverviewScale.tsx +66 -0
- package/component/KgCanvas/KgCanvas.Tooltip.tsx +118 -0
- package/component/KgCanvas/KgCanvas.css +126 -0
- package/component/KgCanvas/KgCanvas.event.ts +380 -0
- package/component/KgCanvas/KgCanvas.hooks.ts +181 -0
- package/component/KgCanvas/KgCanvas.model.ts +31 -0
- package/component/KgCanvas/KgCanvas.service.tsx +116 -0
- package/component/KgCanvas/KgCanvas.store.ts +68 -0
- package/component/KgCanvas/KgCanvas.tsx +633 -0
- package/component/KgCanvas/index.ts +5 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.AreaSelect.tsx +107 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.service.tsx +3053 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.tsx +606 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Legend.tsx +71 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Offline.tsx +50 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Setting.tsx +169 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Log.tsx +30 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Rgv.tsx +672 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.css +510 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.hooks.ts +78 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.model.ts +161 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.store.tsx +744 -0
- package/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.tsx +171 -0
- package/component/KgCircularShuttleMonitor/index.ts +4 -0
- package/component/KgForm/KgForm.event.ts +328 -0
- package/component/KgForm/KgForm.hooks.ts +158 -0
- package/component/KgForm/KgForm.less +0 -0
- package/component/KgForm/KgForm.store.ts +36 -0
- package/component/KgForm/KgForm.tsx +61 -0
- package/component/KgForm/index.ts +10 -0
- package/component/KgForm.Item/KgForm.Item.Addon.DynamicQueryOperator.tsx +88 -0
- package/component/KgForm.Item/KgForm.Item.Addon.Lookup.Modal.tsx +191 -0
- package/component/KgForm.Item/KgForm.Item.Addon.Lookup.tsx +76 -0
- package/component/KgForm.Item/KgForm.Item.Checkbox.tsx +61 -0
- package/component/KgForm.Item/KgForm.Item.CheckboxGroup.tsx +176 -0
- package/component/KgForm.Item/KgForm.Item.Date.tsx +88 -0
- package/component/KgForm.Item/KgForm.Item.DateRange.tsx +110 -0
- package/component/KgForm.Item/KgForm.Item.Image.tsx +35 -0
- package/component/KgForm.Item/KgForm.Item.Input.tsx +72 -0
- package/component/KgForm.Item/KgForm.Item.InputNumber.tsx +68 -0
- package/component/KgForm.Item/KgForm.Item.InputPassword.tsx +72 -0
- package/component/KgForm.Item/KgForm.Item.Link.tsx +37 -0
- package/component/KgForm.Item/KgForm.Item.RadioGroup.tsx +91 -0
- package/component/KgForm.Item/KgForm.Item.Select.service.tsx +317 -0
- package/component/KgForm.Item/KgForm.Item.Select.tsx +236 -0
- package/component/KgForm.Item/KgForm.Item.Switch.tsx +49 -0
- package/component/KgForm.Item/KgForm.Item.TextArea.tsx +99 -0
- package/component/KgForm.Item/KgForm.Item.less +476 -0
- package/component/KgForm.Item/KgForm.Item.model.ts +129 -0
- package/component/KgForm.Item/KgForm.Item.service.tsx +479 -0
- package/component/KgForm.Item/KgForm.Item.tsx +642 -0
- package/component/KgImage/KgImage.less +12 -0
- package/component/KgImage/KgImage.tsx +73 -0
- package/component/KgLayoutHeader/KgLayoutHeader.Locale.tsx +118 -0
- package/component/KgLayoutHeader/KgLayoutHeader.hooks.ts +31 -0
- package/component/KgLayoutHeader/KgLayoutHeader.less +14 -0
- package/component/KgLayoutHeader/index.ts +3 -0
- package/component/KgModal/KgModal.css +234 -0
- package/component/KgModal/KgModal.model.ts +9 -0
- package/component/KgModal/KgModal.service.ts +560 -0
- package/component/KgModal/KgModal.tsx +207 -0
- package/component/KgModal/KgModalHeaderButtons.tsx +130 -0
- package/component/KgModal02/KgModal02.css +11 -0
- package/component/KgModal02/KgModal02.model.ts +1 -0
- package/component/KgModal02/KgModal02.tsx +93 -0
- package/component/KgProgressA/KgProgressA.less +35 -0
- package/component/KgProgressA/KgProgressA.tsx +90 -0
- package/component/KgResizable/KgResizable.less +114 -0
- package/component/KgResizable/KgResizable.service.tsx +41 -0
- package/component/KgResizable/KgResizable.tsx +239 -0
- package/component/KgSearch/KgSearch.event.ts +78 -0
- package/component/KgSearch/KgSearch.hooks.ts +160 -0
- package/component/KgSearch/KgSearch.less +251 -0
- package/component/KgSearch/KgSearch.service.tsx +236 -0
- package/component/KgSearch/KgSearch.store.ts +609 -0
- package/component/KgSearch/KgSearch.tsx +506 -0
- package/component/KgSearch/index.ts +4 -0
- package/component/KgSimulator/KgSimulator.Canvas.Title.tsx +71 -0
- package/component/KgSimulator/KgSimulator.Canvas.service.tsx +3403 -0
- package/component/KgSimulator/KgSimulator.Canvas.tsx +1105 -0
- package/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.tsx +258 -0
- package/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.tsx +214 -0
- package/component/KgSimulator/KgSimulator.Menu.tsx +446 -0
- package/component/KgSimulator/KgSimulator.Panel.Prefab.tsx +87 -0
- package/component/KgSimulator/KgSimulator.Panel.Property.tsx +1120 -0
- package/component/KgSimulator/KgSimulator.Panel.Scene.tsx +819 -0
- package/component/KgSimulator/KgSimulator.Panel.tsx +149 -0
- package/component/KgSimulator/KgSimulator.Prefab.tsx +142 -0
- package/component/KgSimulator/KgSimulator.ToolbarButton.Prefab.tsx +44 -0
- package/component/KgSimulator/KgSimulator.ToolbarButton.Property.tsx +40 -0
- package/component/KgSimulator/KgSimulator.ToolbarButton.Scene.tsx +40 -0
- package/component/KgSimulator/KgSimulator.ToolbarButton.tsx +130 -0
- package/component/KgSimulator/KgSimulator.css +610 -0
- package/component/KgSimulator/KgSimulator.event.ts +197 -0
- package/component/KgSimulator/KgSimulator.hooks.ts +237 -0
- package/component/KgSimulator/KgSimulator.icons.tsx +148 -0
- package/component/KgSimulator/KgSimulator.model.ts +2629 -0
- package/component/KgSimulator/KgSimulator.store.tsx +1192 -0
- package/component/KgSimulator/KgSimulator.tsx +235 -0
- package/component/KgSimulator/KgSimulator.utils.ts +30 -0
- package/component/KgSimulator/index.ts +4 -0
- package/component/KgSubmit/KgSubmit.event.ts +272 -0
- package/component/KgSubmit/KgSubmit.hooks.ts +662 -0
- package/component/KgSubmit/KgSubmit.less +174 -0
- package/component/KgSubmit/KgSubmit.model.ts +82 -0
- package/component/KgSubmit/KgSubmit.service.tsx +368 -0
- package/component/KgSubmit/KgSubmit.store.ts +568 -0
- package/component/KgSubmit/KgSubmit.tsx +1132 -0
- package/component/KgSubmit/index.ts +5 -0
- package/component/KgTable/KgTable.BodyCell.tsx +475 -0
- package/component/KgTable/KgTable.HeadCell.tsx +333 -0
- package/component/KgTable/KgTable.Info.tsx +133 -0
- package/component/KgTable/KgTable.Setting.VarGridMaster.SaveAs.tsx +63 -0
- package/component/KgTable/KgTable.Setting.service.tsx +285 -0
- package/component/KgTable/KgTable.Setting.tsx +377 -0
- package/component/KgTable/KgTable.event.ts +206 -0
- package/component/KgTable/KgTable.hooks.ts +235 -0
- package/component/KgTable/KgTable.less +912 -0
- package/component/KgTable/KgTable.model.ts +73 -0
- package/component/KgTable/KgTable.service.tsx +781 -0
- package/component/KgTable/KgTable.store.ts +390 -0
- package/component/KgTable/KgTable.tsx +1105 -0
- package/component/KgTable/index.ts +5 -0
- package/component/KgTable02/KgTable02.BodyCell.tsx +407 -0
- package/component/KgTable02/KgTable02.css +199 -0
- package/component/KgTable02/KgTable02.event.ts +224 -0
- package/component/KgTable02/KgTable02.hooks.ts +111 -0
- package/component/KgTable02/KgTable02.store.ts +186 -0
- package/component/KgTable02/KgTable02.tsx +865 -0
- package/component/KgTable02/index.ts +5 -0
- package/component/KgVar/KgVar.Factory.tsx +146 -0
- package/component/KgVar/KgVar.css +125 -0
- package/component/KgVar/KgVar.event.ts +122 -0
- package/component/KgVar/KgVar.hooks.ts +543 -0
- package/component/KgVar/KgVar.model.ts +86 -0
- package/component/KgVar/KgVar.store.ts +2966 -0
- package/component/KgVar/KgVar.tsx +276 -0
- package/component/KgVar/index.ts +6 -0
- package/component/KgVarConfig/KgVarConfig.hooks.ts +19 -0
- package/component/KgVarConfig/KgVarConfig.less +499 -0
- package/component/KgVarConfig/KgVarConfig.model.ts +56 -0
- package/component/KgVarConfig/KgVarConfig.store.ts +29 -0
- package/component/KgVarConfig/KgVarConfig.tsx +139 -0
- package/component/KgVarConfig/components/KgVarConfig.SelectFormIdModal.tsx +138 -0
- package/component/KgVarConfig/components/KgVarConfigModal.tsx +228 -0
- package/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButton.tsx +647 -0
- package/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButtonConfig.tsx +64 -0
- package/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.tsx +44 -0
- package/component/KgVarConfig/components/child/KgVarConfig.Modal.Child.tsx +265 -0
- package/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileConfig.tsx +64 -0
- package/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileMaster.service.tsx +408 -0
- package/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileMaster.tsx +399 -0
- package/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.tsx +44 -0
- package/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitConfig.tsx +336 -0
- package/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitDetail.tsx +165 -0
- package/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.tsx +44 -0
- package/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridConfig.tsx +209 -0
- package/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridMaster.service.tsx +567 -0
- package/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridMaster.tsx +398 -0
- package/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.tsx +44 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigControl.tsx +162 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigDescription.tsx +119 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigInput.tsx +322 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigLookup.tsx +222 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigPossibility.tsx +194 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigTip.tsx +134 -0
- package/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarVariable.tsx +129 -0
- package/component/KgVarConfig/index.ts +6 -0
- package/component/KgWarehouse/KgWarehouse.event.ts +63 -0
- package/component/KgWarehouse/KgWarehouse.guard.ts +77 -0
- package/component/KgWarehouse/KgWarehouse.hooks.ts +92 -0
- package/component/KgWarehouse/KgWarehouse.less +78 -0
- package/component/KgWarehouse/KgWarehouse.store.ts +135 -0
- package/component/KgWarehouse/KgWarehouse.tsx +321 -0
- package/component/KgWarehouse/index.ts +5 -0
- package/component/KgWorkStation/KgWorkStation.css +8 -0
- package/component/KgWorkStation/KgWorkStation.event.ts +54 -0
- package/component/KgWorkStation/KgWorkStation.hooks.ts +59 -0
- package/component/KgWorkStation/KgWorkStation.store.ts +144 -0
- package/component/KgWorkStation/KgWorkStation.tsx +254 -0
- package/component/KgWorkStation/index.ts +3 -0
- package/component/KgYesOrNo/KgYesOrNo.less +3 -0
- package/component/KgYesOrNo/KgYesOrNo.tsx +50 -0
- package/component/index.ts +23 -0
- package/config/config.hooks.ts +32 -0
- package/config/config.store.ts +705 -0
- package/config/index.ts +347 -0
- package/i18n/cs_CZ.ts +1 -0
- package/i18n/en.ts +236 -0
- package/i18n/es_ES.ts +1 -0
- package/i18n/fr_FR.ts +1 -0
- package/i18n/i18n.setup.ts +61 -0
- package/i18n/index.ts +23 -0
- package/i18n/km_KH.ts +1 -0
- package/i18n/ko_KR.ts +1 -0
- package/i18n/vi_VN.ts +1 -0
- package/i18n/zh_CN.ts +237 -0
- package/index.ts +15 -0
- package/model/index.ts +1695 -0
- package/package.json +10 -65
- package/page/KgPageCircularShuttleMonitor/KgPageCircularShuttleMonitor.tsx +13 -0
- package/page/KgPageDda/KgPageDda.css +0 -0
- package/page/KgPageDda/KgPageDda.tsx +140 -0
- package/page/KgPageDda/components/KgPageDda.Create.Basic.SqlModal.tsx +65 -0
- package/page/KgPageDda/components/KgPageDda.Create.Basic.tsx +219 -0
- package/page/KgPageDda/components/KgPageDda.Create.Button.tsx +427 -0
- package/page/KgPageDda/components/KgPageDda.Create.Menu.tsx +148 -0
- package/page/KgPageDda/components/KgPageDda.Create.Search.tsx +371 -0
- package/page/KgPageDda/components/KgPageDda.Create.Submit.tsx +362 -0
- package/page/KgPageDda/components/KgPageDda.Create.Table.tsx +372 -0
- package/page/KgPageDda/components/KgPageDda.Create.less +362 -0
- package/page/KgPageDda/components/KgPageDda.Create.store.ts +437 -0
- package/page/KgPageDda/components/KgPageDda.Create.tsx +330 -0
- package/page/KgPageDda/index.ts +4 -0
- package/page/KgPageSqlClient/KgPageSqlClient.tsx +14 -0
- package/page/KgPageSqlClient/components/KgSqlClient.Editor.tsx +84 -0
- package/page/KgPageSqlClient/components/KgSqlClient.ResultTab.tsx +145 -0
- package/page/KgPageSqlClient/components/KgSqlClient.Toolbar.Top.tsx +132 -0
- package/page/KgPageSqlClient/components/KgSqlClient.css +171 -0
- package/page/KgPageSqlClient/components/KgSqlClient.tsx +110 -0
- package/page/index.ts +55 -0
- package/project/build/config/themeConfig.ts +67 -0
- package/project/build/generate/generateModifyVars.ts +40 -0
- package/project/build/vite/plugin/index.ts +83 -0
- package/project/src/api/sys/menu.ts +37 -0
- package/project/src/api/sys/model/menuModel.ts +17 -0
- package/project/src/api/sys/model/userModel.ts +58 -0
- package/project/src/components/Application/src/useAppContext.ts +17 -0
- package/project/src/components/index.ts +3 -0
- package/project/src/enums/CompTypeEnum.ts +32 -0
- package/project/src/enums/DateTypeEnum.ts +8 -0
- package/project/src/enums/appEnum.ts +58 -0
- package/project/src/enums/breakpointEnum.ts +28 -0
- package/project/src/enums/cacheEnum.ts +39 -0
- package/project/src/enums/exceptionEnum.ts +27 -0
- package/project/src/enums/httpEnum.ts +50 -0
- package/project/src/enums/jeecgEnum.ts +23 -0
- package/project/src/enums/menuEnum.ts +50 -0
- package/project/src/enums/pageEnum.ts +19 -0
- package/project/src/enums/roleEnum.ts +7 -0
- package/project/src/enums/sizeEnum.ts +27 -0
- package/project/src/hooks/component/useFormItem.ts +44 -0
- package/project/src/hooks/component/usePageContext.ts +18 -0
- package/project/src/hooks/core/onMountedOrActivated.ts +18 -0
- package/project/src/hooks/core/useAttrs.ts +41 -0
- package/project/src/hooks/core/useContext.ts +30 -0
- package/project/src/hooks/core/useRefs.ts +16 -0
- package/project/src/hooks/core/useTimeout.ts +45 -0
- package/project/src/hooks/event/useBreakpoint.ts +89 -0
- package/project/src/hooks/event/useEventListener.ts +52 -0
- package/project/src/hooks/event/useIntersectionObserver.ts +42 -0
- package/project/src/hooks/event/useScrollTo.ts +59 -0
- package/project/src/hooks/event/useWindowSizeFn.ts +36 -0
- package/project/src/hooks/index.ts +26 -0
- package/project/src/hooks/jeecg/useAdaptiveWidth.ts +82 -0
- package/project/src/hooks/setting/index.ts +27 -0
- package/project/src/hooks/web/useAppInject.ts +10 -0
- package/project/src/hooks/web/useContentHeight.ts +175 -0
- package/project/src/hooks/web/useCopyToClipboard.ts +70 -0
- package/project/src/hooks/web/useDesign.ts +10 -0
- package/project/src/hooks/web/usePage.ts +87 -0
- package/project/src/hooks/web/usePagination.ts +31 -0
- package/project/src/hooks/web/useWebSocket.ts +95 -0
- package/project/src/layouts/default/content/useContentContext.ts +17 -0
- package/project/src/layouts/default/content/useContentViewHeight.ts +42 -0
- package/project/src/locales/helper.ts +36 -0
- package/project/src/locales/setupI18n.ts +43 -0
- package/project/src/locales/useLocale.ts +77 -0
- package/project/src/router/constant2.ts +5 -0
- package/project/src/router/types.ts +73 -0
- package/project/src/settings/componentSetting.ts +88 -0
- package/project/src/settings/designSetting.ts +14 -0
- package/project/src/settings/encryptionSetting.ts +11 -0
- package/project/src/settings/projectSetting.ts +194 -0
- package/project/src/store/modules/locale.ts +49 -0
- package/project/src/utils/auth/index.ts +42 -0
- package/project/src/utils/bem.ts +45 -0
- package/project/src/utils/cache/index.ts +31 -0
- package/project/src/utils/cache/memory.ts +99 -0
- package/project/src/utils/cache/persistent.ts +132 -0
- package/project/src/utils/cache/storageCache.ts +102 -0
- package/project/src/utils/cipher.ts +54 -0
- package/project/src/utils/color.ts +93 -0
- package/project/src/utils/common/compUtils.ts +292 -0
- package/project/src/utils/common/functionUtils.ts +14 -0
- package/project/src/utils/dateUtil.ts +14 -0
- package/project/src/utils/domUtils.ts +158 -0
- package/project/src/utils/encryption/signMd5Utils.ts +122 -0
- package/project/src/utils/env.ts +40 -0
- package/project/src/utils/event/index.ts +39 -0
- package/project/src/utils/factory/createAsyncComponent.tsx +50 -0
- package/project/src/utils/file/base64Conver.ts +15 -0
- package/project/src/utils/file/download.ts +37 -0
- package/project/src/utils/helper/treeHelper.ts +145 -0
- package/project/src/utils/helper/tsxHelper.ts +35 -0
- package/project/src/utils/index.index.ts +158 -0
- package/project/src/utils/is.ts +85 -0
- package/project/src/utils/mitt.ts +101 -0
- package/project/src/utils/propTypes.ts +34 -0
- package/project/src/utils/props.ts +139 -0
- package/project/src/utils/uuid.ts +29 -0
- package/project/types/axios.ts +57 -0
- package/project/types/config.ts +180 -0
- package/project/types/global.d.ts +190 -0
- package/project/types/store.ts +60 -0
- package/project/types/utils.ts +5 -0
- package/service/http-client.ts +257 -0
- package/style/ant.less +678 -0
- package/style/element-plus.css +112 -0
- package/style/flag/cs_CZ.png +0 -0
- package/style/flag/en.png +0 -0
- package/style/flag/es_ES.png +0 -0
- package/style/flag/fr_FR.png +0 -0
- package/style/flag/km_KH.png +0 -0
- package/style/flag/ko_KR.png +0 -0
- package/style/flag/vi_VN.png +0 -0
- package/style/flag/zh_CN.png +0 -0
- package/style/images/warehouse.000000.svg +9 -0
- package/style/images/warehouse.1890ff.svg +9 -0
- package/style/index.less +347 -0
- package/style/jeecg.less +382 -0
- package/style/var.less +3 -0
- package/style/vxe.less +51 -0
- package/type/env.d.ts +7 -0
- package/type/index.d.ts +1 -0
- package/util/ant-design-vue.ts +146 -0
- package/util/event.util.ts +24 -0
- package/util/kg-auth.util.ts +16 -0
- package/util/kg-route.util.ts +25 -0
- package/util/kg.util.tsx +2997 -0
- package/util/tsx.helper.tsx +45 -0
- package/CHANGELOG.md +0 -470
- package/README.md +0 -10
- package/dist/aim-outlined.8d38a0f9.mjs +0 -8
- package/dist/align-left-outlined.579b01c6.mjs +0 -8
- package/dist/audit-outlined.4555f723.mjs +0 -8
- package/dist/bubble-loading.cd2fe007.mjs +0 -8
- package/dist/bulb-outlined.a5bf22d8.mjs +0 -8
- package/dist/card-text-outline.6e053122.mjs +0 -8
- package/dist/caret-down-outlined.c0564a3f.mjs +0 -8
- package/dist/caret-left-outlined.35b1d7d1.mjs +0 -8
- package/dist/caret-right-filled.dbbda237.mjs +0 -8
- package/dist/caret-right-outlined-Btgsw6a_.0434903b.mjs +0 -8
- package/dist/caret-right-outlined.12fe6699.mjs +0 -8
- package/dist/caret-up-outlined.81b559ad.mjs +0 -8
- package/dist/check-box-outline-blank.d01a2055.mjs +0 -8
- package/dist/check-circle-outlined.b219949f.mjs +0 -8
- package/dist/check-outlined.59c42074.mjs +0 -8
- package/dist/check-square-outlined.233589d8.mjs +0 -8
- package/dist/checkbox-indeterminate.e5386a53.mjs +0 -8
- package/dist/clock-circle-outline.b9d0b3dc.mjs +0 -8
- package/dist/close-circle-outlined.85f75690.mjs +0 -8
- package/dist/close-outlined-DMcSQWxQ.5c3bee6f.mjs +0 -8
- package/dist/close-outlined.5757472a.mjs +0 -8
- package/dist/collapse-all-rounded.26ee73fc.mjs +0 -8
- package/dist/control-outlined.d66ac4d2.mjs +0 -8
- package/dist/copy-filled.a3dcd299.mjs +0 -8
- package/dist/copy-outlined.6a695d8a.mjs +0 -8
- package/dist/delete-outlined.20afb717.mjs +0 -8
- package/dist/delete-twotone.1d40696a.mjs +0 -8
- package/dist/double-right-outlined.f057a6b2.mjs +0 -8
- package/dist/down-circle-outlined.8ba93393.mjs +0 -8
- package/dist/download-outlined.e78b5364.mjs +0 -8
- package/dist/edit-outlined.0aae2217.mjs +0 -8
- package/dist/edit-twotone.67c952fa.mjs +0 -8
- package/dist/email-resend-outline.780506de.mjs +0 -8
- package/dist/exception-outlined.8c0003a2.mjs +0 -8
- package/dist/exclamation-circle-outlined-DZrXCnvM.d94561db.mjs +0 -8
- package/dist/expand-all-rounded.e01e6cb9.mjs +0 -8
- package/dist/eye-invisible-outlined.5f8d6151.mjs +0 -8
- package/dist/eye-outlined.b25b4d28.mjs +0 -8
- package/dist/file-text-outline.2fbccab6.mjs +0 -8
- package/dist/fit-screen-outline.7341560f.mjs +0 -8
- package/dist/fullscreen-exit-outlined-X1iYkFc4.a1640595.mjs +0 -8
- package/dist/fullscreen-exit-outlined.b77fa876.mjs +0 -8
- package/dist/fullscreen-outlined-DDBrsRcy.b9f9d4a1.mjs +0 -8
- package/dist/fullscreen-outlined.cd572ef8.mjs +0 -8
- package/dist/holder-outlined.9e698750.mjs +0 -8
- package/dist/index.css +0 -1
- package/dist/info-circle-outlined.7ddbd554.mjs +0 -8
- package/dist/kengic-vue.js +0 -224292
- package/dist/key-return-thin.ce6f074c.mjs +0 -8
- package/dist/loading-outlined.13a15197.mjs +0 -8
- package/dist/more-outlined.8e1202ac.mjs +0 -8
- package/dist/one-to-one-outlined.ac265beb.mjs +0 -8
- package/dist/palette-swatch-variant.f7258843.mjs +0 -8
- package/dist/partition-outlined.1bcf4f37.mjs +0 -8
- package/dist/pause-circle-outlined.cd534f5f.mjs +0 -8
- package/dist/pause-outlined.fca0d0f9.mjs +0 -8
- package/dist/pause-rounded.1ed7cc39.mjs +0 -8
- package/dist/play-arrow-rounded.90fc4173.mjs +0 -8
- package/dist/plus-outlined.bdaa6481.mjs +0 -8
- package/dist/printer-outlined.a8d0d92b.mjs +0 -8
- package/dist/profile-outlined.1059fb0d.mjs +0 -8
- package/dist/project/build/config/themeConfig.ts +0 -67
- package/dist/project/build/generate/generateModifyVars.ts +0 -39
- package/dist/project/build/vite/plugin/index.ts +0 -87
- package/dist/project/index.ts +0 -1
- package/dist/project/types/global.d.ts +0 -184
- package/dist/release-gate-check.8c1ba629.mjs +0 -8
- package/dist/reload-outlined.d320578b.mjs +0 -8
- package/dist/retweet-outlined.bfa9b123.mjs +0 -8
- package/dist/save-as-outline-rounded.c65d61b2.mjs +0 -8
- package/dist/save-outline-rounded.c9c3f880.mjs +0 -8
- package/dist/search-outlined-Od1M_oxf.71fb0c01.mjs +0 -8
- package/dist/search-outlined.ba5c5a3f.mjs +0 -8
- package/dist/setting-outlined.a3caf743.mjs +0 -8
- package/dist/src/api/WMS/Controllers/DescriptionController/List.d.ts +0 -51
- package/dist/src/api/WMS/Controllers/DescriptionController/ListByCodeNamesAndCodeValues.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/DescriptionController/index.d.ts +0 -2
- package/dist/src/api/WMS/Controllers/SqlClientController/Execute.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/SqlClientController/ExecutePage.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/SqlClientController/index.d.ts +0 -2
- package/dist/src/api/WMS/Controllers/SysPermissionController/List.d.ts +0 -73
- package/dist/src/api/WMS/Controllers/SysPermissionController/index.d.ts +0 -1
- package/dist/src/api/WMS/Controllers/VarConfigDescriptionController/Add.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarConfigDescriptionController/ListByFormId.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarConfigPossibilityController/ExecuteQuery.d.ts +0 -18
- package/dist/src/api/WMS/Controllers/VarConfigPossibilityController/index.d.ts +0 -1
- package/dist/src/api/WMS/Controllers/VarController/GetAll.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarController/index.d.ts +0 -1
- package/dist/src/api/WMS/Controllers/VarDdaController/Create.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/GetResultSetMetadataFromSql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateCopySql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateCreateSql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateDeleteSql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateFrmId.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateSearchSql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateUpdateSql.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/ValidateVarButtonVarName.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarDdaController/index.d.ts +0 -9
- package/dist/src/api/WMS/Controllers/VarGridMasterController/QueryByID.d.ts +0 -19
- package/dist/src/api/WMS/Controllers/VarGridMasterController/Update.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarGridMasterController/index.d.ts +0 -2
- package/dist/src/api/WMS/Controllers/VarProfileMasterController/QueryByID.d.ts +0 -19
- package/dist/src/api/WMS/Controllers/VarProfileMasterController/index.d.ts +0 -1
- package/dist/src/api/WMS/Controllers/VarVariableController/Delete.d.ts +0 -16
- package/dist/src/api/WMS/Controllers/VarVariableController/index.d.ts +0 -1
- package/dist/src/api/WMS/Controllers/WarehouseController/ListVO.d.ts +0 -25
- package/dist/src/api/WMS/Controllers/WorkstationController/List.d.ts +0 -25
- package/dist/src/api/WMS/Controllers/WorkstationController/index.d.ts +0 -1
- package/dist/src/api/WMS/index.d.ts +0 -2
- package/dist/src/api/WMS/models.d.ts +0 -1128
- package/dist/src/api/api.d.ts +0 -1
- package/dist/src/api/def.d.ts +0 -1
- package/dist/src/api/index.d.ts +0 -2
- package/dist/src/component/KgAppSelect/KgAppSelect.d.ts +0 -46
- package/dist/src/component/KgAppSelect/KgAppSelect.event.d.ts +0 -31
- package/dist/src/component/KgAppSelect/KgAppSelect.hooks.d.ts +0 -18
- package/dist/src/component/KgAppSelect/KgAppSelect.store.d.ts +0 -33
- package/dist/src/component/KgAppSelect/index.d.ts +0 -3
- package/dist/src/component/KgButton/KgButton.Copy.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Create.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Delete.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Export.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Import.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.ImportTemplate.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Item.d.ts +0 -39
- package/dist/src/component/KgButton/KgButton.Other.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Search.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.Update.d.ts +0 -40
- package/dist/src/component/KgButton/KgButton.d.ts +0 -39
- package/dist/src/component/KgButton/KgButton.event.d.ts +0 -81
- package/dist/src/component/KgButton/KgButton.hooks.d.ts +0 -67
- package/dist/src/component/KgButton/KgButton.model.d.ts +0 -31
- package/dist/src/component/KgButton/KgButton.store.d.ts +0 -92
- package/dist/src/component/KgCanvas/KgCanvas.ContextMenu.d.ts +0 -100
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.Fullscreen.d.ts +0 -37
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.Mode.d.ts +0 -7
- package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.OverviewScale.d.ts +0 -37
- package/dist/src/component/KgCanvas/KgCanvas.Tooltip.d.ts +0 -27
- package/dist/src/component/KgCanvas/KgCanvas.d.ts +0 -232
- package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +0 -216
- package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +0 -100
- package/dist/src/component/KgCanvas/KgCanvas.model.d.ts +0 -27
- package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +0 -17
- package/dist/src/component/KgCanvas/KgCanvas.store.d.ts +0 -9
- package/dist/src/component/KgCanvas/index.d.ts +0 -4
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.AreaSelect.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.service.d.ts +0 -63
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Legend.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Offline.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Setting.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Log.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Rgv.d.ts +0 -33
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.d.ts +0 -5
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.hooks.d.ts +0 -29
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.model.d.ts +0 -127
- package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.store.d.ts +0 -354
- package/dist/src/component/KgCircularShuttleMonitor/index.d.ts +0 -3
- package/dist/src/component/KgForm/KgForm.d.ts +0 -413
- package/dist/src/component/KgForm/KgForm.event.d.ts +0 -202
- package/dist/src/component/KgForm/KgForm.hooks.d.ts +0 -92
- package/dist/src/component/KgForm/KgForm.store.d.ts +0 -23
- package/dist/src/component/KgForm/index.d.ts +0 -4
- package/dist/src/component/KgForm.Item/KgForm.Item.Addon.DynamicQueryOperator.d.ts +0 -49
- package/dist/src/component/KgForm.Item/KgForm.Item.Addon.Lookup.Modal.d.ts +0 -16
- package/dist/src/component/KgForm.Item/KgForm.Item.Addon.Lookup.d.ts +0 -31
- package/dist/src/component/KgForm.Item/KgForm.Item.Checkbox.d.ts +0 -98
- package/dist/src/component/KgForm.Item/KgForm.Item.CheckboxGroup.d.ts +0 -95
- package/dist/src/component/KgForm.Item/KgForm.Item.Date.d.ts +0 -95
- package/dist/src/component/KgForm.Item/KgForm.Item.DateRange.d.ts +0 -95
- package/dist/src/component/KgForm.Item/KgForm.Item.Image.d.ts +0 -90
- package/dist/src/component/KgForm.Item/KgForm.Item.Input.d.ts +0 -94
- package/dist/src/component/KgForm.Item/KgForm.Item.InputNumber.d.ts +0 -94
- package/dist/src/component/KgForm.Item/KgForm.Item.InputPassword.d.ts +0 -94
- package/dist/src/component/KgForm.Item/KgForm.Item.Link.d.ts +0 -93
- package/dist/src/component/KgForm.Item/KgForm.Item.RadioGroup.d.ts +0 -96
- package/dist/src/component/KgForm.Item/KgForm.Item.Select.d.ts +0 -95
- package/dist/src/component/KgForm.Item/KgForm.Item.Select.service.d.ts +0 -28
- package/dist/src/component/KgForm.Item/KgForm.Item.Switch.d.ts +0 -94
- package/dist/src/component/KgForm.Item/KgForm.Item.TextArea.d.ts +0 -94
- package/dist/src/component/KgForm.Item/KgForm.Item.d.ts +0 -95
- package/dist/src/component/KgForm.Item/KgForm.Item.model.d.ts +0 -111
- package/dist/src/component/KgForm.Item/KgForm.Item.service.d.ts +0 -17
- package/dist/src/component/KgImage/KgImage.d.ts +0 -100
- package/dist/src/component/KgLayoutHeader/KgLayoutHeader.Locale.d.ts +0 -38
- package/dist/src/component/KgLayoutHeader/KgLayoutHeader.hooks.d.ts +0 -4
- package/dist/src/component/KgLayoutHeader/index.d.ts +0 -2
- package/dist/src/component/KgModal/KgModal.d.ts +0 -817
- package/dist/src/component/KgModal/KgModal.model.d.ts +0 -8
- package/dist/src/component/KgModal/KgModal.service.d.ts +0 -37
- package/dist/src/component/KgModal/KgModalHeaderButtons.d.ts +0 -92
- package/dist/src/component/KgModal02/KgModal02.d.ts +0 -470
- package/dist/src/component/KgModal02/KgModal02.model.d.ts +0 -1
- package/dist/src/component/KgProgressA/KgProgressA.d.ts +0 -85
- package/dist/src/component/KgResizable/KgResizable.d.ts +0 -119
- package/dist/src/component/KgResizable/KgResizable.service.d.ts +0 -12
- package/dist/src/component/KgSearch/KgSearch.d.ts +0 -26
- package/dist/src/component/KgSearch/KgSearch.event.d.ts +0 -31
- package/dist/src/component/KgSearch/KgSearch.hooks.d.ts +0 -72
- package/dist/src/component/KgSearch/KgSearch.service.d.ts +0 -32
- package/dist/src/component/KgSearch/KgSearch.store.d.ts +0 -103
- package/dist/src/component/KgSearch/index.d.ts +0 -3
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.Title.d.ts +0 -11
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.d.ts +0 -11
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.service.d.ts +0 -80
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.d.ts +0 -36
- package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +0 -36
- package/dist/src/component/KgSimulator/KgSimulator.Menu.d.ts +0 -4
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Prefab.d.ts +0 -4
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Property.d.ts +0 -4
- package/dist/src/component/KgSimulator/KgSimulator.Panel.Scene.d.ts +0 -4
- package/dist/src/component/KgSimulator/KgSimulator.Panel.d.ts +0 -97
- package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +0 -108
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Prefab.d.ts +0 -9
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Property.d.ts +0 -9
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Scene.d.ts +0 -9
- package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.d.ts +0 -113
- package/dist/src/component/KgSimulator/KgSimulator.d.ts +0 -33
- package/dist/src/component/KgSimulator/KgSimulator.event.d.ts +0 -93
- package/dist/src/component/KgSimulator/KgSimulator.hooks.d.ts +0 -103
- package/dist/src/component/KgSimulator/KgSimulator.icons.d.ts +0 -10
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +0 -1502
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +0 -474
- package/dist/src/component/KgSimulator/KgSimulator.utils.d.ts +0 -21
- package/dist/src/component/KgSimulator/index.d.ts +0 -3
- package/dist/src/component/KgSubmit/KgSubmit.d.ts +0 -21
- package/dist/src/component/KgSubmit/KgSubmit.event.d.ts +0 -135
- package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +0 -358
- package/dist/src/component/KgSubmit/KgSubmit.model.d.ts +0 -57
- package/dist/src/component/KgSubmit/KgSubmit.service.d.ts +0 -29
- package/dist/src/component/KgSubmit/KgSubmit.store.d.ts +0 -112
- package/dist/src/component/KgSubmit/index.d.ts +0 -4
- package/dist/src/component/KgTable/KgTable.BodyCell.d.ts +0 -60
- package/dist/src/component/KgTable/KgTable.HeadCell.d.ts +0 -51
- package/dist/src/component/KgTable/KgTable.Info.d.ts +0 -57
- package/dist/src/component/KgTable/KgTable.Setting.VarGridMaster.SaveAs.d.ts +0 -4
- package/dist/src/component/KgTable/KgTable.Setting.d.ts +0 -20
- package/dist/src/component/KgTable/KgTable.Setting.service.d.ts +0 -22
- package/dist/src/component/KgTable/KgTable.d.ts +0 -39
- package/dist/src/component/KgTable/KgTable.event.d.ts +0 -111
- package/dist/src/component/KgTable/KgTable.hooks.d.ts +0 -135
- package/dist/src/component/KgTable/KgTable.model.d.ts +0 -65
- package/dist/src/component/KgTable/KgTable.service.d.ts +0 -34
- package/dist/src/component/KgTable/KgTable.store.d.ts +0 -91
- package/dist/src/component/KgTable/index.d.ts +0 -4
- package/dist/src/component/KgTable02/KgTable02.BodyCell.d.ts +0 -72
- package/dist/src/component/KgTable02/KgTable02.d.ts +0 -46
- package/dist/src/component/KgTable02/KgTable02.event.d.ts +0 -123
- package/dist/src/component/KgTable02/KgTable02.hooks.d.ts +0 -62
- package/dist/src/component/KgTable02/KgTable02.store.d.ts +0 -62
- package/dist/src/component/KgTable02/index.d.ts +0 -4
- package/dist/src/component/KgVar/KgVar.Factory.d.ts +0 -106
- package/dist/src/component/KgVar/KgVar.d.ts +0 -120
- package/dist/src/component/KgVar/KgVar.event.d.ts +0 -75
- package/dist/src/component/KgVar/KgVar.hooks.d.ts +0 -307
- package/dist/src/component/KgVar/KgVar.model.d.ts +0 -70
- package/dist/src/component/KgVar/KgVar.store.d.ts +0 -269
- package/dist/src/component/KgVar/index.d.ts +0 -5
- package/dist/src/component/KgVarConfig/KgVarConfig.d.ts +0 -3
- package/dist/src/component/KgVarConfig/KgVarConfig.hooks.d.ts +0 -3
- package/dist/src/component/KgVarConfig/KgVarConfig.model.d.ts +0 -42
- package/dist/src/component/KgVarConfig/KgVarConfig.store.d.ts +0 -16
- package/dist/src/component/KgVarConfig/components/KgVarConfig.SelectFormIdModal.d.ts +0 -27
- package/dist/src/component/KgVarConfig/components/KgVarConfigModal.d.ts +0 -53
- package/dist/src/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButton.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButtonConfig.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/button/KgVarConfig.Modal.Button.d.ts +0 -5
- package/dist/src/component/KgVarConfig/components/child/KgVarConfig.Modal.Child.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileConfig.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileMaster.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.VarProfileMaster.service.d.ts +0 -17
- package/dist/src/component/KgVarConfig/components/search/KgVarConfig.Modal.Search.d.ts +0 -5
- package/dist/src/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitConfig.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitDetail.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.d.ts +0 -5
- package/dist/src/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridConfig.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridMaster.d.ts +0 -7
- package/dist/src/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.VarGridMaster.service.d.ts +0 -23
- package/dist/src/component/KgVarConfig/components/table/KgVarConfig.Modal.Table.d.ts +0 -5
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigControl.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigDescription.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigInput.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigLookup.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigPossibility.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarConfigTip.d.ts +0 -2
- package/dist/src/component/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarVariable.d.ts +0 -2
- package/dist/src/component/KgVarConfig/index.d.ts +0 -3
- package/dist/src/component/KgWarehouse/KgWarehouse.d.ts +0 -50
- package/dist/src/component/KgWarehouse/KgWarehouse.event.d.ts +0 -30
- package/dist/src/component/KgWarehouse/KgWarehouse.guard.d.ts +0 -8
- package/dist/src/component/KgWarehouse/KgWarehouse.hooks.d.ts +0 -41
- package/dist/src/component/KgWarehouse/KgWarehouse.store.d.ts +0 -27
- package/dist/src/component/KgWarehouse/index.d.ts +0 -4
- package/dist/src/component/KgYesOrNo/KgYesOrNo.d.ts +0 -60
- package/dist/src/component/index.d.ts +0 -21
- package/dist/src/config/config.hooks.d.ts +0 -10
- package/dist/src/config/config.store.d.ts +0 -307
- package/dist/src/config/index.d.ts +0 -63
- package/dist/src/const/const.model.d.ts +0 -1768
- package/dist/src/const/form-id.const.d.ts +0 -44
- package/dist/src/const/index.d.ts +0 -2
- package/dist/src/i18n/cs_CZ.d.ts +0 -2
- package/dist/src/i18n/en.d.ts +0 -237
- package/dist/src/i18n/es_ES.d.ts +0 -2
- package/dist/src/i18n/fr_FR.d.ts +0 -2
- package/dist/src/i18n/i18n.setup.d.ts +0 -22
- package/dist/src/i18n/index.d.ts +0 -3
- package/dist/src/i18n/km_KH.d.ts +0 -2
- package/dist/src/i18n/ko_KR.d.ts +0 -2
- package/dist/src/i18n/vi_VN.d.ts +0 -2
- package/dist/src/i18n/zh_CN.d.ts +0 -238
- package/dist/src/index.d.ts +0 -12
- package/dist/src/page/KgPageCircularShuttleMonitor/KgPageCircularShuttleMonitor.d.ts +0 -11
- package/dist/src/page/KgPageDda/KgPageDda.d.ts +0 -8
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Basic.SqlModal.d.ts +0 -32
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Basic.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Button.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Menu.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Search.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Submit.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.Table.d.ts +0 -7
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.d.ts +0 -33
- package/dist/src/page/KgPageDda/components/KgPageDda.Create.store.d.ts +0 -39
- package/dist/src/page/KgPageDda/index.d.ts +0 -5
- package/dist/src/page/KgPageSqlClient/KgPageSqlClient.d.ts +0 -12
- package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Editor.d.ts +0 -13
- package/dist/src/page/KgPageSqlClient/components/KgSqlClient.ResultTab.d.ts +0 -36
- package/dist/src/page/KgPageSqlClient/components/KgSqlClient.Toolbar.Top.d.ts +0 -7
- package/dist/src/page/KgPageSqlClient/components/KgSqlClient.d.ts +0 -5
- package/dist/src/page/index.d.ts +0 -8
- package/dist/src/project/build/getConfigFileName.d.ts +0 -5
- package/dist/src/project/build/index.d.ts +0 -1
- package/dist/src/project/src/api/sys/menu.d.ts +0 -4
- package/dist/src/project/src/api/sys/model/menuModel.d.ts +0 -15
- package/dist/src/project/src/api/sys/model/userModel.d.ts +0 -46
- package/dist/src/project/src/components/Application/src/useAppContext.d.ts +0 -9
- package/dist/src/project/src/components/index.d.ts +0 -2
- package/dist/src/project/src/enums/CompTypeEnum.d.ts +0 -19
- package/dist/src/project/src/enums/DateTypeEnum.d.ts +0 -8
- package/dist/src/project/src/enums/appEnum.d.ts +0 -40
- package/dist/src/project/src/enums/breakpointEnum.d.ts +0 -18
- package/dist/src/project/src/enums/cacheEnum.d.ts +0 -18
- package/dist/src/project/src/enums/exceptionEnum.d.ts +0 -17
- package/dist/src/project/src/enums/httpEnum.d.ts +0 -38
- package/dist/src/project/src/enums/jeecgEnum.d.ts +0 -16
- package/dist/src/project/src/enums/menuEnum.d.ts +0 -35
- package/dist/src/project/src/enums/pageEnum.d.ts +0 -14
- package/dist/src/project/src/enums/roleEnum.d.ts +0 -4
- package/dist/src/project/src/enums/sizeEnum.d.ts +0 -18
- package/dist/src/project/src/hooks/component/useFormItem.d.ts +0 -2
- package/dist/src/project/src/hooks/component/usePageContext.d.ts +0 -10
- package/dist/src/project/src/hooks/core/onMountedOrActivated.d.ts +0 -1
- package/dist/src/project/src/hooks/core/useAttrs.d.ts +0 -9
- package/dist/src/project/src/hooks/core/useContext.d.ts +0 -11
- package/dist/src/project/src/hooks/core/useRefs.d.ts +0 -2
- package/dist/src/project/src/hooks/core/useTimeout.d.ts +0 -10
- package/dist/src/project/src/hooks/event/useBreakpoint.d.ts +0 -22
- package/dist/src/project/src/hooks/event/useEventListener.d.ts +0 -14
- package/dist/src/project/src/hooks/event/useIntersectionObserver.d.ts +0 -13
- package/dist/src/project/src/hooks/event/useScrollTo.d.ts +0 -10
- package/dist/src/project/src/hooks/event/useWindowSizeFn.d.ts +0 -7
- package/dist/src/project/src/hooks/index.d.ts +0 -21
- package/dist/src/project/src/hooks/jeecg/useAdaptiveWidth.d.ts +0 -18
- package/dist/src/project/src/hooks/setting/index.d.ts +0 -2
- package/dist/src/project/src/hooks/web/useAppInject.d.ts +0 -3
- package/dist/src/project/src/hooks/web/useContentHeight.d.ts +0 -24
- package/dist/src/project/src/hooks/web/useCopyToClipboard.d.ts +0 -10
- package/dist/src/project/src/hooks/web/useDesign.d.ts +0 -4
- package/dist/src/project/src/hooks/web/usePage.d.ts +0 -10
- package/dist/src/project/src/hooks/web/usePagination.d.ts +0 -7
- package/dist/src/project/src/hooks/web/useWebSocket.d.ts +0 -18
- package/dist/src/project/src/layouts/default/content/useContentContext.d.ts +0 -9
- package/dist/src/project/src/layouts/default/content/useContentViewHeight.d.ts +0 -7
- package/dist/src/project/src/locales/helper.d.ts +0 -5
- package/dist/src/project/src/locales/setupI18n.d.ts +0 -4
- package/dist/src/project/src/locales/useLocale.d.ts +0 -11
- package/dist/src/project/src/router/constant2.d.ts +0 -3
- package/dist/src/project/src/router/types.d.ts +0 -61
- package/dist/src/project/src/settings/componentSetting.d.ts +0 -44
- package/dist/src/project/src/settings/designSetting.d.ts +0 -6
- package/dist/src/project/src/settings/encryptionSetting.d.ts +0 -6
- package/dist/src/project/src/settings/projectSetting.d.ts +0 -3
- package/dist/src/project/src/store/modules/locale.d.ts +0 -38
- package/dist/src/project/src/utils/auth/index.d.ts +0 -19
- package/dist/src/project/src/utils/bem.d.ts +0 -15
- package/dist/src/project/src/utils/cache/index.d.ts +0 -7
- package/dist/src/project/src/utils/cache/memory.d.ts +0 -22
- package/dist/src/project/src/utils/cache/persistent.d.ts +0 -33
- package/dist/src/project/src/utils/cache/storageCache.d.ts +0 -8
- package/dist/src/project/src/utils/cipher.d.ts +0 -19
- package/dist/src/project/src/utils/color.d.ts +0 -29
- package/dist/src/project/src/utils/common/compUtils.d.ts +0 -87
- package/dist/src/project/src/utils/common/functionUtils.d.ts +0 -6
- package/dist/src/project/src/utils/dateUtil.d.ts +0 -4
- package/dist/src/project/src/utils/domUtils.d.ts +0 -28
- package/dist/src/project/src/utils/encryption/signMd5Utils.d.ts +0 -29
- package/dist/src/project/src/utils/env.d.ts +0 -16
- package/dist/src/project/src/utils/event/index.d.ts +0 -3
- package/dist/src/project/src/utils/factory/createAsyncComponent.d.ts +0 -9
- package/dist/src/project/src/utils/file/base64Conver.d.ts +0 -4
- package/dist/src/project/src/utils/file/download.d.ts +0 -9
- package/dist/src/project/src/utils/helper/treeHelper.d.ts +0 -34
- package/dist/src/project/src/utils/helper/tsxHelper.d.ts +0 -13
- package/dist/src/project/src/utils/index.index.d.ts +0 -42
- package/dist/src/project/src/utils/is.d.ts +0 -17
- package/dist/src/project/src/utils/mitt.d.ts +0 -26
- package/dist/src/project/src/utils/propTypes.d.ts +0 -9
- package/dist/src/project/src/utils/props.d.ts +0 -68
- package/dist/src/project/src/utils/uuid.d.ts +0 -2
- package/dist/src/project/types/axios.d.ts +0 -35
- package/dist/src/project/types/config.d.ts +0 -119
- package/dist/src/project/types/store.d.ts +0 -43
- package/dist/src/project/types/utils.d.ts +0 -4
- package/dist/src/service/http-client.d.ts +0 -98
- package/dist/src/util/ant-design-vue.d.ts +0 -347
- package/dist/src/util/event.util.d.ts +0 -15
- package/dist/src/util/kg-auth.util.d.ts +0 -12
- package/dist/src/util/kg-route.util.d.ts +0 -18
- package/dist/src/util/kg.util.d.ts +0 -349
- package/dist/src/util/tsx.helper.d.ts +0 -23
- package/dist/stop-outlined.9f2c4f61.mjs +0 -8
- package/dist/stop.ea3dde55.mjs +0 -8
- package/dist/three-dots-loading-bIlrTJYR.f189f620.mjs +0 -8
- package/dist/upload-outlined.c576b26a.mjs +0 -8
- /package/{dist/src/api/WMS/Controllers/VarConfigDescriptionController/index.d.ts → api/WMS/Controllers/VarConfigDescriptionController/index.ts} +0 -0
- /package/{dist/src/api/WMS/Controllers/WarehouseController/index.d.ts → api/WMS/Controllers/WarehouseController/index.ts} +0 -0
- /package/{dist/src/api/WMS/Controllers/index.d.ts → api/WMS/Controllers/index.ts} +0 -0
- /package/{dist/src/component/KgButton/index.d.ts → component/KgButton/index.ts} +0 -0
- /package/{dist/src/component/KgForm.Item/index.d.ts → component/KgForm.Item/index.ts} +0 -0
- /package/{dist/src/component/KgImage/index.d.ts → component/KgImage/index.ts} +0 -0
- /package/{dist/src/component/KgModal/index.d.ts → component/KgModal/index.ts} +0 -0
- /package/{dist/src/component/KgModal02/index.d.ts → component/KgModal02/index.ts} +0 -0
- /package/{dist/src/component/KgProgressA/index.d.ts → component/KgProgressA/index.ts} +0 -0
- /package/{dist/src/component/KgResizable/index.d.ts → component/KgResizable/index.ts} +0 -0
- /package/{dist/src/component/KgSearch/KgSearch.model.d.ts → component/KgSearch/KgSearch.model.ts} +0 -0
- /package/{dist/src/component/KgTable02/KgTable02.model.d.ts → component/KgTable02/KgTable02.model.ts} +0 -0
- /package/{dist/src/component/KgYesOrNo/index.d.ts → component/KgYesOrNo/index.ts} +0 -0
- /package/{dist/src/page/KgPageCircularShuttleMonitor/index.d.ts → page/KgPageCircularShuttleMonitor/index.ts} +0 -0
- /package/{dist/src/page/KgPageSqlClient/index.d.ts → page/KgPageSqlClient/index.ts} +0 -0
- /package/{dist/project → project}/build/constant.ts +0 -0
- /package/{dist/project → project}/build/generate/icon/index.ts +0 -0
- /package/{dist/project → project}/build/getConfigFileName.ts +0 -0
- /package/{dist/project → project}/build/index.ts +0 -0
- /package/{dist/project → project}/build/script/buildConf.ts +0 -0
- /package/{dist/project → project}/build/script/postBuild.ts +0 -0
- /package/{dist/project → project}/build/utils.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/compress.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/html.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/imagemin.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/pwa.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/styleImport.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/svgSprite.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/theme.ts +0 -0
- /package/{dist/project → project}/build/vite/plugin/visualizer.ts +0 -0
- /package/{dist/project → project}/build/vite/proxy.ts +0 -0
- /package/{dist/src/project/index.d.ts → project/index.ts} +0 -0
- /package/{dist/src/project/src/api/index.d.ts → project/src/api/index.ts} +0 -0
- /package/{dist/src/project/src/api/sys/model/uploadModel.d.ts → project/src/api/sys/model/uploadModel.ts} +0 -0
- /package/{dist/src/project/src/components/Dropdown/index.d.ts → project/src/components/Dropdown/index.ts} +0 -0
- /package/{dist/src/project/src/components/Dropdown/src/typing.d.ts → project/src/components/Dropdown/src/typing.ts} +0 -0
- /package/{dist/src/project/src/enums/index.d.ts → project/src/enums/index.ts} +0 -0
- /package/{dist/src/project/src/index.d.ts → project/src/index.ts} +0 -0
- /package/{dist/src/project/src/layouts/index.d.ts → project/src/layouts/index.ts} +0 -0
- /package/{dist/src/project/src/locales/index.d.ts → project/src/locales/index.ts} +0 -0
- /package/{dist/src/project/src/router/index.d.ts → project/src/router/index.ts} +0 -0
- /package/{dist/src/project/src/settings/index.d.ts → project/src/settings/index.ts} +0 -0
- /package/{dist/src/project/src/store/index.d.ts → project/src/store/index.ts} +0 -0
- /package/{dist/src/project/src/store/modules/index.d.ts → project/src/store/modules/index.ts} +0 -0
- /package/{dist/src/project/src/utils/index.d.ts → project/src/utils/index.ts} +0 -0
- /package/{dist/src/project/types/index.d.ts → project/types/index.ts} +0 -0
- /package/{dist/src/service/index.d.ts → service/index.ts} +0 -0
- /package/{dist/src/util/index.d.ts → util/index.ts} +0 -0
|
@@ -1,1128 +0,0 @@
|
|
|
1
|
-
/** 创建 DDA. */
|
|
2
|
-
export declare class CreateVarDdaQuery {
|
|
3
|
-
/** 界面标识(FormID). */
|
|
4
|
-
frmId?: string | null;
|
|
5
|
-
/** 菜单. */
|
|
6
|
-
sysPermissions?: Array<SysPermission> | null;
|
|
7
|
-
/** 按钮. */
|
|
8
|
-
varButtons?: Array<VarButton> | null;
|
|
9
|
-
/** 变量配置:变量翻译. */
|
|
10
|
-
varConfigDescriptions?: Array<VarConfigDescription> | null;
|
|
11
|
-
/** DDA. */
|
|
12
|
-
varDda?: VarDda | null;
|
|
13
|
-
/** 表格配置. */
|
|
14
|
-
varGridConfig?: VarGridConfig | null;
|
|
15
|
-
/** 表格视图明细. */
|
|
16
|
-
varGridDetails?: Array<VarGridDetail> | null;
|
|
17
|
-
/** 表格视图. */
|
|
18
|
-
varGridMaster?: VarGridMaster | null;
|
|
19
|
-
/** 查询条件配置. */
|
|
20
|
-
varProfileConfig?: VarProfileConfig | null;
|
|
21
|
-
/** 查询条件视图明细. */
|
|
22
|
-
varProfileDetails?: Array<VarProfileDetail> | null;
|
|
23
|
-
/** 查询条件视图. */
|
|
24
|
-
varProfileMaster?: VarProfileMaster | null;
|
|
25
|
-
/** 提交表单配置. */
|
|
26
|
-
varSubmitConfigs?: Array<VarSubmitConfig> | null;
|
|
27
|
-
/** 提交表单字段. */
|
|
28
|
-
varSubmitDetails?: Array<VarSubmitDetail> | null;
|
|
29
|
-
/** 变量. */
|
|
30
|
-
varVariables?: Array<VarVariable> | null;
|
|
31
|
-
constructor(obj?: CreateVarDdaQuery);
|
|
32
|
-
}
|
|
33
|
-
/** 创建表格视图. */
|
|
34
|
-
export declare class CreateVarGridMasterQuery {
|
|
35
|
-
/** 是否默认(DefaultFlag). */
|
|
36
|
-
def_flg?: number | null;
|
|
37
|
-
/** 界面标识(FormID). */
|
|
38
|
-
frm_id?: string | null;
|
|
39
|
-
/** 视图名称变量. */
|
|
40
|
-
grd_var_nam?: string | null;
|
|
41
|
-
/** 视图名称翻译. */
|
|
42
|
-
grd_var_nam_dsc?: string | null;
|
|
43
|
-
/** 分组(GroupName). */
|
|
44
|
-
grp_nam?: string | null;
|
|
45
|
-
/** 用户(UserID). */
|
|
46
|
-
usr_id?: string | null;
|
|
47
|
-
/** 字段列表. */
|
|
48
|
-
varGridDetails?: Array<VarGridDetail> | null;
|
|
49
|
-
constructor(obj?: CreateVarGridMasterQuery);
|
|
50
|
-
}
|
|
51
|
-
/** 创建查询条件视图. */
|
|
52
|
-
export declare class CreateVarProfileMasterQuery {
|
|
53
|
-
/** 是否默认(DefaultFlag). */
|
|
54
|
-
def_flg?: number | null;
|
|
55
|
-
/** 是否启用高级查询(DynamicQueryFlag). */
|
|
56
|
-
dyn_flg?: number | null;
|
|
57
|
-
/** 界面标识(FormID). */
|
|
58
|
-
frm_id?: string | null;
|
|
59
|
-
/** 分组(GroupName). */
|
|
60
|
-
grp_nam?: string | null;
|
|
61
|
-
/** 视图名称变量. */
|
|
62
|
-
prf_var_nam?: string | null;
|
|
63
|
-
/** 视图名称翻译. */
|
|
64
|
-
prf_var_nam_dsc?: string | null;
|
|
65
|
-
/** 用户(UserID). */
|
|
66
|
-
usr_id?: string | null;
|
|
67
|
-
/** 字段列表. */
|
|
68
|
-
varProfileDetails?: Array<VarProfileDetail> | null;
|
|
69
|
-
constructor(obj?: CreateVarProfileMasterQuery);
|
|
70
|
-
}
|
|
71
|
-
/** 描述(Description). */
|
|
72
|
-
export declare class Description {
|
|
73
|
-
/** 列名(CodeName). */
|
|
74
|
-
codnam?: string | null;
|
|
75
|
-
/** 列值(CodeValue). */
|
|
76
|
-
codval?: string | null;
|
|
77
|
-
/** 模块(ProjectName). */
|
|
78
|
-
grpNam?: string | null;
|
|
79
|
-
/** id. */
|
|
80
|
-
id?: string | null;
|
|
81
|
-
/** 插入时间. */
|
|
82
|
-
insDt?: string | null;
|
|
83
|
-
/** 插入用户Id. */
|
|
84
|
-
insUsrId?: string | null;
|
|
85
|
-
/** 长描述(LongDescription). */
|
|
86
|
-
lngDsc?: string | null;
|
|
87
|
-
/** 语言(LocaleId). */
|
|
88
|
-
localeId?: string | null;
|
|
89
|
-
/** 修改用户编号. */
|
|
90
|
-
modUsrCod?: string | null;
|
|
91
|
-
/** 修改日期. */
|
|
92
|
-
moddte?: string | null;
|
|
93
|
-
/** 短描述(ShortDescription). */
|
|
94
|
-
shortDsc?: string | null;
|
|
95
|
-
/** 顺序号(Sequence). */
|
|
96
|
-
srtseq?: number | null;
|
|
97
|
-
/** 系统定义. */
|
|
98
|
-
sysDefFlg?: number | null;
|
|
99
|
-
/** 版本. */
|
|
100
|
-
version?: number | null;
|
|
101
|
-
constructor(obj?: Description);
|
|
102
|
-
}
|
|
103
|
-
/** 根据多个 codeName 和 codeValue 批量查询描述数据. */
|
|
104
|
-
export declare class DescriptionBatchQuery {
|
|
105
|
-
/** 描述组的编号. */
|
|
106
|
-
codeName?: string | null;
|
|
107
|
-
/** 描述项的编号模板. */
|
|
108
|
-
codeValue?: string | null;
|
|
109
|
-
/** 描述项的编号列表. */
|
|
110
|
-
codeValues?: Array<string> | null;
|
|
111
|
-
constructor(obj?: DescriptionBatchQuery);
|
|
112
|
-
}
|
|
113
|
-
/** 描述数据传输对象(DescriptionDTO). */
|
|
114
|
-
export declare class DescriptionDTO {
|
|
115
|
-
/** 列名(CodeName). */
|
|
116
|
-
codnam?: string | null;
|
|
117
|
-
/** 列值(CodeValue). */
|
|
118
|
-
codval?: string | null;
|
|
119
|
-
/** 模块(ProjectName). */
|
|
120
|
-
grpNam?: string | null;
|
|
121
|
-
/** id. */
|
|
122
|
-
id?: string | null;
|
|
123
|
-
/** 长描述(LongDescription). */
|
|
124
|
-
lngDsc?: string | null;
|
|
125
|
-
/** 语言(LocaleId). */
|
|
126
|
-
localeId?: string | null;
|
|
127
|
-
/** 修改用户编号. */
|
|
128
|
-
modUsrCod?: string | null;
|
|
129
|
-
/** 修改日期. */
|
|
130
|
-
moddte?: string | null;
|
|
131
|
-
/** 短描述(ShortDescription). */
|
|
132
|
-
shortDsc?: string | null;
|
|
133
|
-
/** 短描述含列值(ShortDescriptionWithCodeValue). */
|
|
134
|
-
shortDscWithCodval?: string | null;
|
|
135
|
-
/** 顺序号(Sequence). */
|
|
136
|
-
srtseq?: number | null;
|
|
137
|
-
/** 系统定义. */
|
|
138
|
-
sysDefFlg?: number | null;
|
|
139
|
-
/** 版本. */
|
|
140
|
-
version?: number | null;
|
|
141
|
-
constructor(obj?: DescriptionDTO);
|
|
142
|
-
}
|
|
143
|
-
/** 执行语句的参数. */
|
|
144
|
-
export declare class ExecuteQuery {
|
|
145
|
-
/** 当前页码. */
|
|
146
|
-
pageIndex?: number | null;
|
|
147
|
-
/** 每页大小. */
|
|
148
|
-
pageSize?: number | null;
|
|
149
|
-
/** 执行的 SQL. */
|
|
150
|
-
sql?: string | null;
|
|
151
|
-
constructor(obj?: ExecuteQuery);
|
|
152
|
-
}
|
|
153
|
-
/** 查询结果的列的元数据. */
|
|
154
|
-
export declare class ExecuteResultColumn {
|
|
155
|
-
/** 列的描述. */
|
|
156
|
-
columnDesc?: string | null;
|
|
157
|
-
/** 列的别名. */
|
|
158
|
-
columnLabel?: string | null;
|
|
159
|
-
/** 列名. */
|
|
160
|
-
columnName?: string | null;
|
|
161
|
-
/** 列的类型. */
|
|
162
|
-
columnType?: string | null;
|
|
163
|
-
/** 表名. */
|
|
164
|
-
tableName?: string | null;
|
|
165
|
-
constructor(obj?: ExecuteResultColumn);
|
|
166
|
-
}
|
|
167
|
-
/** 执行语句的结果. */
|
|
168
|
-
export declare class ExecuteResultDTO {
|
|
169
|
-
/** 查询结果的列. */
|
|
170
|
-
columns?: Array<ExecuteResultColumn> | null;
|
|
171
|
-
/** 耗时(毫秒). */
|
|
172
|
-
elapse?: number | null;
|
|
173
|
-
/** 是否是 SELECT 查询. */
|
|
174
|
-
isSelect?: boolean | null;
|
|
175
|
-
/** 执行结果消息. */
|
|
176
|
-
message?: string | null;
|
|
177
|
-
/** 当前页码. */
|
|
178
|
-
pageIndex?: number | null;
|
|
179
|
-
/** 每页大小. */
|
|
180
|
-
pageSize?: number | null;
|
|
181
|
-
/** 查询结果的行. */
|
|
182
|
-
rows?: Array<object> | null;
|
|
183
|
-
/** 受影响的行数. */
|
|
184
|
-
rowsTotal?: number | null;
|
|
185
|
-
/** 该结果对应的语句. */
|
|
186
|
-
sql?: string | null;
|
|
187
|
-
/** 是否执行成功. */
|
|
188
|
-
success?: boolean | null;
|
|
189
|
-
constructor(obj?: ExecuteResultDTO);
|
|
190
|
-
}
|
|
191
|
-
/** 获取 SQL 查询结果的元数据. */
|
|
192
|
-
export declare class GetResultSetMetadataFromSqlQuery {
|
|
193
|
-
/** SQL. */
|
|
194
|
-
sql?: string | null;
|
|
195
|
-
constructor(obj?: GetResultSetMetadataFromSqlQuery);
|
|
196
|
-
}
|
|
197
|
-
export declare class IPage<T0> {
|
|
198
|
-
/** Current. */
|
|
199
|
-
current?: number | null;
|
|
200
|
-
/** Pages. */
|
|
201
|
-
pages?: number | null;
|
|
202
|
-
/** Records. */
|
|
203
|
-
records?: Array<T0> | null;
|
|
204
|
-
/** Size. */
|
|
205
|
-
size?: number | null;
|
|
206
|
-
/** Total. */
|
|
207
|
-
total?: number | null;
|
|
208
|
-
constructor(obj?: IPage<T0>);
|
|
209
|
-
}
|
|
210
|
-
/** SQL 查询结果的列的元数据. */
|
|
211
|
-
export declare class ResultSetMetadataColumn {
|
|
212
|
-
/** 列的描述. */
|
|
213
|
-
columnDesc?: string | null;
|
|
214
|
-
/** 列的别名. */
|
|
215
|
-
columnLabel?: string | null;
|
|
216
|
-
/** 列名. */
|
|
217
|
-
columnName?: string | null;
|
|
218
|
-
/** 列的类型. */
|
|
219
|
-
columnType?: string | null;
|
|
220
|
-
/** 临时主键. */
|
|
221
|
-
id?: string | null;
|
|
222
|
-
/** 表名. */
|
|
223
|
-
tableName?: string | null;
|
|
224
|
-
constructor(obj?: ResultSetMetadataColumn);
|
|
225
|
-
}
|
|
226
|
-
/** SQL 查询结果的元数据. */
|
|
227
|
-
export declare class ResultSetMetadataFromSqlDTO {
|
|
228
|
-
/** 查询结果的所有列. */
|
|
229
|
-
columns?: Array<ResultSetMetadataColumn> | null;
|
|
230
|
-
constructor(obj?: ResultSetMetadataFromSqlDTO);
|
|
231
|
-
}
|
|
232
|
-
export declare class SysPermission {
|
|
233
|
-
/** Always Show. */
|
|
234
|
-
alwaysShow?: boolean | null;
|
|
235
|
-
/** App. */
|
|
236
|
-
app?: string | null;
|
|
237
|
-
/** Component. */
|
|
238
|
-
component?: string | null;
|
|
239
|
-
/** Component Name. */
|
|
240
|
-
componentName?: string | null;
|
|
241
|
-
/** Create By. */
|
|
242
|
-
createBy?: string | null;
|
|
243
|
-
/** Create Time. */
|
|
244
|
-
createTime?: string | null;
|
|
245
|
-
/** Del Flag. */
|
|
246
|
-
delFlag?: number | null;
|
|
247
|
-
/** Description. */
|
|
248
|
-
description?: string | null;
|
|
249
|
-
/** Hidden. */
|
|
250
|
-
hidden?: boolean | null;
|
|
251
|
-
/** Hide Tab. */
|
|
252
|
-
hideTab?: boolean | null;
|
|
253
|
-
/** Icon. */
|
|
254
|
-
icon?: string | null;
|
|
255
|
-
/** Id. */
|
|
256
|
-
id?: string | null;
|
|
257
|
-
/** Internal Or External. */
|
|
258
|
-
internalOrExternal?: boolean | null;
|
|
259
|
-
/** Keep Alive. */
|
|
260
|
-
keepAlive?: boolean | null;
|
|
261
|
-
/** Leaf. */
|
|
262
|
-
leaf?: boolean | null;
|
|
263
|
-
/** Menu Type. */
|
|
264
|
-
menuType?: number | null;
|
|
265
|
-
/** Name. */
|
|
266
|
-
name?: string | null;
|
|
267
|
-
/** Parent Id. */
|
|
268
|
-
parentId?: string | null;
|
|
269
|
-
/** Perms. */
|
|
270
|
-
perms?: string | null;
|
|
271
|
-
/** Perms Type. */
|
|
272
|
-
permsType?: string | null;
|
|
273
|
-
/** Redirect. */
|
|
274
|
-
redirect?: string | null;
|
|
275
|
-
/** Route. */
|
|
276
|
-
route?: boolean | null;
|
|
277
|
-
/** Rule Flag. */
|
|
278
|
-
ruleFlag?: number | null;
|
|
279
|
-
/** Sort No. */
|
|
280
|
-
sortNo?: number | null;
|
|
281
|
-
/** Status. */
|
|
282
|
-
status?: string | null;
|
|
283
|
-
/** Update By. */
|
|
284
|
-
updateBy?: string | null;
|
|
285
|
-
/** Update Time. */
|
|
286
|
-
updateTime?: string | null;
|
|
287
|
-
/** Url. */
|
|
288
|
-
url?: string | null;
|
|
289
|
-
constructor(obj?: SysPermission);
|
|
290
|
-
}
|
|
291
|
-
export declare class SysPermissionTree {
|
|
292
|
-
/** Always Show. */
|
|
293
|
-
alwaysShow?: boolean | null;
|
|
294
|
-
/** App. */
|
|
295
|
-
app?: string | null;
|
|
296
|
-
/** Children. */
|
|
297
|
-
children?: Array<SysPermissionTree> | null;
|
|
298
|
-
/** Component. */
|
|
299
|
-
component?: string | null;
|
|
300
|
-
/** Component Name. */
|
|
301
|
-
componentName?: string | null;
|
|
302
|
-
/** Create By. */
|
|
303
|
-
createBy?: string | null;
|
|
304
|
-
/** Create Time. */
|
|
305
|
-
createTime?: string | null;
|
|
306
|
-
/** Del Flag. */
|
|
307
|
-
delFlag?: number | null;
|
|
308
|
-
/** Description. */
|
|
309
|
-
description?: string | null;
|
|
310
|
-
/** Hidden. */
|
|
311
|
-
hidden?: boolean | null;
|
|
312
|
-
/** Icon. */
|
|
313
|
-
icon?: string | null;
|
|
314
|
-
/** Id. */
|
|
315
|
-
id?: string | null;
|
|
316
|
-
/** Internal Or External. */
|
|
317
|
-
internalOrExternal?: boolean | null;
|
|
318
|
-
/** Is Leaf. */
|
|
319
|
-
isLeaf?: boolean | null;
|
|
320
|
-
/** Keep Alive. */
|
|
321
|
-
keepAlive?: boolean | null;
|
|
322
|
-
/** Key. */
|
|
323
|
-
key?: string | null;
|
|
324
|
-
/** Leaf. */
|
|
325
|
-
leaf?: boolean | null;
|
|
326
|
-
/** Menu Type. */
|
|
327
|
-
menuType?: number | null;
|
|
328
|
-
/** Name. */
|
|
329
|
-
name?: string | null;
|
|
330
|
-
/** Parent Id. */
|
|
331
|
-
parentId?: string | null;
|
|
332
|
-
/** Perms. */
|
|
333
|
-
perms?: string | null;
|
|
334
|
-
/** Perms Type. */
|
|
335
|
-
permsType?: string | null;
|
|
336
|
-
/** Redirect. */
|
|
337
|
-
redirect?: string | null;
|
|
338
|
-
/** Route. */
|
|
339
|
-
route?: boolean | null;
|
|
340
|
-
/** Sort No. */
|
|
341
|
-
sortNo?: number | null;
|
|
342
|
-
/** Status. */
|
|
343
|
-
status?: string | null;
|
|
344
|
-
/** Title. */
|
|
345
|
-
title?: string | null;
|
|
346
|
-
/** Update By. */
|
|
347
|
-
updateBy?: string | null;
|
|
348
|
-
/** Update Time. */
|
|
349
|
-
updateTime?: string | null;
|
|
350
|
-
/** Url. */
|
|
351
|
-
url?: string | null;
|
|
352
|
-
constructor(obj?: SysPermissionTree);
|
|
353
|
-
}
|
|
354
|
-
/** 用户仓库. */
|
|
355
|
-
export declare class SysUserWarehouseDTO {
|
|
356
|
-
/** 是否是默认的仓库. */
|
|
357
|
-
default_flag?: number | null;
|
|
358
|
-
/** 主键. */
|
|
359
|
-
id?: string | null;
|
|
360
|
-
/** 创建日期. */
|
|
361
|
-
ins_dt?: string | null;
|
|
362
|
-
/** 创建用户. */
|
|
363
|
-
ins_usr_id?: string | null;
|
|
364
|
-
/** 更新用户. */
|
|
365
|
-
mod_usr_id?: string | null;
|
|
366
|
-
/** 更新日期. */
|
|
367
|
-
moddte?: string | null;
|
|
368
|
-
/** 用户ID. */
|
|
369
|
-
user_id?: string | null;
|
|
370
|
-
/** 仓库描述. */
|
|
371
|
-
wh_dsc?: string | null;
|
|
372
|
-
/** 仓库编号. */
|
|
373
|
-
wh_id?: string | null;
|
|
374
|
-
constructor(obj?: SysUserWarehouseDTO);
|
|
375
|
-
}
|
|
376
|
-
/** 更新表格视图. */
|
|
377
|
-
export declare class UpdateVarGridMasterQuery {
|
|
378
|
-
/** 定制级别(CustomLevel). */
|
|
379
|
-
cust_lvl?: number | null;
|
|
380
|
-
/** 是否默认(DefaultFlag). */
|
|
381
|
-
def_flg?: number | null;
|
|
382
|
-
/** 界面标识(FormID). */
|
|
383
|
-
frm_id?: string | null;
|
|
384
|
-
/** 视图变量名称(GridVariableName). */
|
|
385
|
-
grd_var_nam?: string | null;
|
|
386
|
-
/** 视图名称翻译. */
|
|
387
|
-
grd_var_nam_dsc?: string | null;
|
|
388
|
-
/** 分组(GroupName). */
|
|
389
|
-
grp_nam?: string | null;
|
|
390
|
-
/** 主键. */
|
|
391
|
-
id?: string | null;
|
|
392
|
-
/** 用户(UserID). */
|
|
393
|
-
usr_id?: string | null;
|
|
394
|
-
/** 字段列表. */
|
|
395
|
-
varGridDetails?: Array<VarGridDetail> | null;
|
|
396
|
-
constructor(obj?: UpdateVarGridMasterQuery);
|
|
397
|
-
}
|
|
398
|
-
/** 校验界面标识是否有效. */
|
|
399
|
-
export declare class ValidateFrmIdQuery {
|
|
400
|
-
/** 界面标识. */
|
|
401
|
-
frmId?: string | null;
|
|
402
|
-
constructor(obj?: ValidateFrmIdQuery);
|
|
403
|
-
}
|
|
404
|
-
/** 校验 SQL 语句是否有效. */
|
|
405
|
-
export declare class ValidateSqlQuery {
|
|
406
|
-
/** SQL. */
|
|
407
|
-
sql?: string | null;
|
|
408
|
-
constructor(obj?: ValidateSqlQuery);
|
|
409
|
-
}
|
|
410
|
-
/** 校验按钮的变量名称是否有效. */
|
|
411
|
-
export declare class ValidateVarButtonVarNameQuery {
|
|
412
|
-
/** 变量名称. */
|
|
413
|
-
varName?: string | null;
|
|
414
|
-
constructor(obj?: ValidateVarButtonVarNameQuery);
|
|
415
|
-
}
|
|
416
|
-
/** 按钮. */
|
|
417
|
-
export declare class VarButton {
|
|
418
|
-
/** 是否可用. */
|
|
419
|
-
available_flag?: number | null;
|
|
420
|
-
/** 接口地址(Command). */
|
|
421
|
-
cmd?: string | null;
|
|
422
|
-
/** 接口请求方式(CommandMethod). */
|
|
423
|
-
cmd_method?: string | null;
|
|
424
|
-
/** 接口参数(CommandParameter). */
|
|
425
|
-
cmd_prm?: string | null;
|
|
426
|
-
/** 颜色(Color). */
|
|
427
|
-
color?: string | null;
|
|
428
|
-
/** 删除时要将哪个字段作为参数传给接口(DeleteParamColumn). */
|
|
429
|
-
del_param_clm?: string | null;
|
|
430
|
-
/** 是否在勾选多行时禁用(DisableWhenMultipleSelect). */
|
|
431
|
-
dis_mult_select_flg?: number | null;
|
|
432
|
-
/** 是否在未勾选行时禁用(DisableWhenNoSelect). */
|
|
433
|
-
dis_no_select_flg?: number | null;
|
|
434
|
-
/** 导出 EXCEL 的文件名. */
|
|
435
|
-
export_excel_filename?: string | null;
|
|
436
|
-
/** 导出 EXCEL 的文件名后缀. */
|
|
437
|
-
export_excel_suffix?: string | null;
|
|
438
|
-
/** 界面标识(FormID). */
|
|
439
|
-
frm_id?: string | null;
|
|
440
|
-
/** 按钮图标(Icon). */
|
|
441
|
-
icon?: string | null;
|
|
442
|
-
/** 主键. */
|
|
443
|
-
id?: string | null;
|
|
444
|
-
/** 确认弹窗属性. */
|
|
445
|
-
modal_props?: string | null;
|
|
446
|
-
/** 权限码. */
|
|
447
|
-
permission_code?: string | null;
|
|
448
|
-
/** 是否使用主要按钮样式(PrimaryFlag). */
|
|
449
|
-
primary_flg?: number | null;
|
|
450
|
-
/** 配置属性. */
|
|
451
|
-
props?: string | null;
|
|
452
|
-
/** 重新查询之后, 是否保持勾选. */
|
|
453
|
-
re_select_after_reload_flg?: number | null;
|
|
454
|
-
/** 执行成功之后, 是否重新查询. */
|
|
455
|
-
reload_all_after_done_flg?: number | null;
|
|
456
|
-
/** 是否显示确认弹窗. */
|
|
457
|
-
show_modal_flg?: number | null;
|
|
458
|
-
/** 是否显示成功消息. */
|
|
459
|
-
show_success_message_flg?: number | null;
|
|
460
|
-
/** SQL. */
|
|
461
|
-
sql?: string | null;
|
|
462
|
-
/** 显示顺序(SortSequence). */
|
|
463
|
-
srtseq?: number | null;
|
|
464
|
-
/** 按钮类型(Type). */
|
|
465
|
-
typ?: string | null;
|
|
466
|
-
/** 变量名称(VariableName). */
|
|
467
|
-
var_nam?: string | null;
|
|
468
|
-
constructor(obj?: VarButton);
|
|
469
|
-
}
|
|
470
|
-
/** 按钮配置. */
|
|
471
|
-
export declare class VarButtonConfig {
|
|
472
|
-
/** 是否可用. */
|
|
473
|
-
available_flg?: number | null;
|
|
474
|
-
/** 显示样式. */
|
|
475
|
-
display_type?: string | null;
|
|
476
|
-
/** 界面标识(FormID). */
|
|
477
|
-
frm_id?: string | null;
|
|
478
|
-
/** 主键. */
|
|
479
|
-
id?: string | null;
|
|
480
|
-
/** 配置属性. */
|
|
481
|
-
props?: string | null;
|
|
482
|
-
constructor(obj?: VarButtonConfig);
|
|
483
|
-
}
|
|
484
|
-
/** 父子界面. */
|
|
485
|
-
export declare class VarChildDetail {
|
|
486
|
-
/** 是否可用. */
|
|
487
|
-
available_flag?: number | null;
|
|
488
|
-
/** 子界面的界面标识. */
|
|
489
|
-
child_form_id?: string | null;
|
|
490
|
-
/** 父子界面间的关联属性. */
|
|
491
|
-
foreign_keys?: string | null;
|
|
492
|
-
/** 界面标识(FormID). */
|
|
493
|
-
frm_id?: string | null;
|
|
494
|
-
/** 主键. */
|
|
495
|
-
id?: string | null;
|
|
496
|
-
/** 配置属性. */
|
|
497
|
-
props?: string | null;
|
|
498
|
-
/** 排序. */
|
|
499
|
-
sort?: number | null;
|
|
500
|
-
constructor(obj?: VarChildDetail);
|
|
501
|
-
}
|
|
502
|
-
/** 变量配置:表单控件. */
|
|
503
|
-
export declare class VarConfigControl {
|
|
504
|
-
/** 所属按钮的变量名称. */
|
|
505
|
-
button_var_name?: string | null;
|
|
506
|
-
/** 控件属性(ControlProperties). */
|
|
507
|
-
ctrl_prop?: string | null;
|
|
508
|
-
/** 控件类型(ControlType). */
|
|
509
|
-
ctrl_typ?: string | null;
|
|
510
|
-
/** 定制级别(CustomLevel). */
|
|
511
|
-
cust_lvl?: number | null;
|
|
512
|
-
/** 界面标识(FormID). */
|
|
513
|
-
frm_id?: string | null;
|
|
514
|
-
/** 分组(GroupName). */
|
|
515
|
-
grp_nam?: string | null;
|
|
516
|
-
/** 主键. */
|
|
517
|
-
id?: string | null;
|
|
518
|
-
/** 语言(LocaleID). */
|
|
519
|
-
locale_id?: string | null;
|
|
520
|
-
/** 配置属性. */
|
|
521
|
-
props?: string | null;
|
|
522
|
-
/** 变量名称(VariableName). */
|
|
523
|
-
var_nam?: string | null;
|
|
524
|
-
constructor(obj?: VarConfigControl);
|
|
525
|
-
}
|
|
526
|
-
/** 变量配置:变量翻译. */
|
|
527
|
-
export declare class VarConfigDescription {
|
|
528
|
-
/** 定制级别(CustomLevel). */
|
|
529
|
-
cust_lvl?: number | null;
|
|
530
|
-
/** 界面标识(FormID). */
|
|
531
|
-
frm_id?: string | null;
|
|
532
|
-
/** 分组(GroupName). */
|
|
533
|
-
grp_nam?: string | null;
|
|
534
|
-
/** 主键. */
|
|
535
|
-
id?: string | null;
|
|
536
|
-
/** 语言(LocaleID). */
|
|
537
|
-
locale_id?: string | null;
|
|
538
|
-
/** 配置属性. */
|
|
539
|
-
props?: string | null;
|
|
540
|
-
/** 变量名称(VariableName). */
|
|
541
|
-
var_nam?: string | null;
|
|
542
|
-
/** 显示文本(Text). */
|
|
543
|
-
var_text?: string | null;
|
|
544
|
-
constructor(obj?: VarConfigDescription);
|
|
545
|
-
}
|
|
546
|
-
/** 变量配置:表单输入验证. */
|
|
547
|
-
export declare class VarConfigInput {
|
|
548
|
-
/** 定制级别(CustomLevel). */
|
|
549
|
-
cust_lvl?: number | null;
|
|
550
|
-
/** 数据类型(DataType). */
|
|
551
|
-
data_type?: string | null;
|
|
552
|
-
/** 界面标识(FormID). */
|
|
553
|
-
frm_id?: string | null;
|
|
554
|
-
/** 分组(GroupName). */
|
|
555
|
-
grp_nam?: string | null;
|
|
556
|
-
/** 主键. */
|
|
557
|
-
id?: string | null;
|
|
558
|
-
/** 语言(LocaleID). */
|
|
559
|
-
locale_id?: string | null;
|
|
560
|
-
/** 最大值. */
|
|
561
|
-
max?: number | null;
|
|
562
|
-
/** 是否包含最大值. */
|
|
563
|
-
max_include_flg?: number | null;
|
|
564
|
-
/** 最大长度. */
|
|
565
|
-
max_length?: number | null;
|
|
566
|
-
/** 最小值. */
|
|
567
|
-
min?: number | null;
|
|
568
|
-
/** 是否包含最小值. */
|
|
569
|
-
min_include_flg?: number | null;
|
|
570
|
-
/** 最小长度. */
|
|
571
|
-
min_length?: number | null;
|
|
572
|
-
/** 配置属性. */
|
|
573
|
-
props?: string | null;
|
|
574
|
-
/** 正则表达式. */
|
|
575
|
-
regular_expression?: string | null;
|
|
576
|
-
/** 验证方式. */
|
|
577
|
-
validation_type?: string | null;
|
|
578
|
-
/** 变量名称(VariableName). */
|
|
579
|
-
var_nam?: string | null;
|
|
580
|
-
constructor(obj?: VarConfigInput);
|
|
581
|
-
}
|
|
582
|
-
/** 变量配置:查找弹窗. */
|
|
583
|
-
export declare class VarConfigLookup {
|
|
584
|
-
/** 定制级别(CustomLevel). */
|
|
585
|
-
cust_lvl?: number | null;
|
|
586
|
-
/** 界面标识(FormID). */
|
|
587
|
-
frm_id?: string | null;
|
|
588
|
-
/** 分组(GroupName). */
|
|
589
|
-
grp_nam?: string | null;
|
|
590
|
-
/** 主键. */
|
|
591
|
-
id?: string | null;
|
|
592
|
-
/** 查找编号(LookupID). */
|
|
593
|
-
lkp_id?: string | null;
|
|
594
|
-
/** 语言(LocaleID). */
|
|
595
|
-
locale_id?: string | null;
|
|
596
|
-
/** 是否支持多选(MultipleFlag). */
|
|
597
|
-
mult_flg?: number | null;
|
|
598
|
-
/** 配置属性. */
|
|
599
|
-
props?: string | null;
|
|
600
|
-
/** 返回字段(ReturnField). */
|
|
601
|
-
ret_fld?: string | null;
|
|
602
|
-
/** 变量名称(VariableName). */
|
|
603
|
-
var_nam?: string | null;
|
|
604
|
-
constructor(obj?: VarConfigLookup);
|
|
605
|
-
}
|
|
606
|
-
/** 变量配置:列表数据. */
|
|
607
|
-
export declare class VarConfigPossibility {
|
|
608
|
-
/** 接口地址(Command). */
|
|
609
|
-
cmd?: string | null;
|
|
610
|
-
/** 接口方法(CommandMethod). */
|
|
611
|
-
cmd_method?: string | null;
|
|
612
|
-
/** 接口参数(CommandParameter). */
|
|
613
|
-
cmd_prm?: string | null;
|
|
614
|
-
/** 定制级别(CustomLevel). */
|
|
615
|
-
cust_lvl?: number | null;
|
|
616
|
-
/** 数据源的类型. */
|
|
617
|
-
data_source_type?: string | null;
|
|
618
|
-
/** 界面标识(FormID). */
|
|
619
|
-
frm_id?: string | null;
|
|
620
|
-
/** 分组(GroupName). */
|
|
621
|
-
grp_nam?: string | null;
|
|
622
|
-
/** 主键. */
|
|
623
|
-
id?: string | null;
|
|
624
|
-
/** 显示列(LabelColumn). */
|
|
625
|
-
lbl_clm?: string | null;
|
|
626
|
-
/** 语言(LocaleID). */
|
|
627
|
-
locale_id?: string | null;
|
|
628
|
-
/** 配置属性. */
|
|
629
|
-
props?: string | null;
|
|
630
|
-
/** SQL. */
|
|
631
|
-
sql?: string | null;
|
|
632
|
-
/** 数据列(ValueColumn). */
|
|
633
|
-
val_clm?: string | null;
|
|
634
|
-
/** 数据类型. */
|
|
635
|
-
val_data_type?: string | null;
|
|
636
|
-
/** 变量名称(VariableName). */
|
|
637
|
-
var_nam?: string | null;
|
|
638
|
-
constructor(obj?: VarConfigPossibility);
|
|
639
|
-
}
|
|
640
|
-
/** 变量配置:文本提示. */
|
|
641
|
-
export declare class VarConfigTip {
|
|
642
|
-
/** 定制级别(CustomLevel). */
|
|
643
|
-
cust_lvl?: number | null;
|
|
644
|
-
/** 界面标识(FormID). */
|
|
645
|
-
frm_id?: string | null;
|
|
646
|
-
/** 主键. */
|
|
647
|
-
id?: string | null;
|
|
648
|
-
/** 语言(LocaleID). */
|
|
649
|
-
locale_id?: string | null;
|
|
650
|
-
/** 位置. */
|
|
651
|
-
placement?: string | null;
|
|
652
|
-
/** 配置属性. */
|
|
653
|
-
props?: string | null;
|
|
654
|
-
/** 提示文本. */
|
|
655
|
-
tip?: string | null;
|
|
656
|
-
/** 变量名称(VariableName). */
|
|
657
|
-
var_nam?: string | null;
|
|
658
|
-
constructor(obj?: VarConfigTip);
|
|
659
|
-
}
|
|
660
|
-
/** 配置数据. */
|
|
661
|
-
export declare class VarDTO {
|
|
662
|
-
/** 按钮配置. */
|
|
663
|
-
varButtonConfig?: VarButtonConfig | null;
|
|
664
|
-
/** 按钮. */
|
|
665
|
-
varButtons?: Array<VarButton> | null;
|
|
666
|
-
/** 父子界面. */
|
|
667
|
-
varChildDetails?: Array<VarChildDetail> | null;
|
|
668
|
-
/** 变量配置:表单控件. */
|
|
669
|
-
varConfigControls?: Array<VarConfigControl> | null;
|
|
670
|
-
/** 变量配置:变量翻译. */
|
|
671
|
-
varConfigDescriptions?: Array<VarConfigDescription> | null;
|
|
672
|
-
/** 变量配置:表单输入验证. */
|
|
673
|
-
varConfigInputs?: Array<VarConfigInput> | null;
|
|
674
|
-
/** 变量配置:查找弹窗. */
|
|
675
|
-
varConfigLookups?: Array<VarConfigLookup> | null;
|
|
676
|
-
/** 变量配置:列表数据. */
|
|
677
|
-
varConfigPossibilities?: Array<VarConfigPossibility> | null;
|
|
678
|
-
/** 变量配置:提示文本. */
|
|
679
|
-
varConfigTips?: Array<VarConfigTip> | null;
|
|
680
|
-
/** DDA. */
|
|
681
|
-
varDda?: VarDda | null;
|
|
682
|
-
/** 表格配置. */
|
|
683
|
-
varGridConfig?: VarGridConfig | null;
|
|
684
|
-
/** 表格视图列表. */
|
|
685
|
-
varGridMasters?: Array<VarGridMasterDTO> | null;
|
|
686
|
-
/** 查询条件配置. */
|
|
687
|
-
varProfileConfig?: VarProfileConfig | null;
|
|
688
|
-
/** 查询条件视图列表. */
|
|
689
|
-
varProfileMasters?: Array<VarProfileMasterDTO> | null;
|
|
690
|
-
/** 提交表单配置. */
|
|
691
|
-
varSubmitConfigs?: Array<VarSubmitConfig> | null;
|
|
692
|
-
/** 提交表单字段. */
|
|
693
|
-
varSubmitDetails?: Array<VarSubmitDetail> | null;
|
|
694
|
-
/** 变量. */
|
|
695
|
-
varVariables?: Array<VarVariable> | null;
|
|
696
|
-
constructor(obj?: VarDTO);
|
|
697
|
-
}
|
|
698
|
-
/** DDA. */
|
|
699
|
-
export declare class VarDda {
|
|
700
|
-
/** 界面标识(FormID). */
|
|
701
|
-
frm_id?: string | null;
|
|
702
|
-
/** 界面名称(FormName). */
|
|
703
|
-
frm_nam?: string | null;
|
|
704
|
-
/** 主键. */
|
|
705
|
-
id?: string | null;
|
|
706
|
-
/** 配置属性. */
|
|
707
|
-
props?: string | null;
|
|
708
|
-
constructor(obj?: VarDda);
|
|
709
|
-
}
|
|
710
|
-
/** 表格配置. */
|
|
711
|
-
export declare class VarGridConfig {
|
|
712
|
-
/** 是否自动加载数据(AutoLoadFlag). */
|
|
713
|
-
aut_load_flg?: number | null;
|
|
714
|
-
/** 是否可用. */
|
|
715
|
-
available_flg?: number | null;
|
|
716
|
-
/** 按钮显示样式(ButtonDisplayType). */
|
|
717
|
-
button_display_type?: string | null;
|
|
718
|
-
/** 是否查询之后自动勾选首行. */
|
|
719
|
-
check_first_row_after_retrieve?: number | null;
|
|
720
|
-
/** 接口参数(CommandParameter). */
|
|
721
|
-
cmd_prm?: string | null;
|
|
722
|
-
/** 是否将排序字段转换为 under_score 命名方式. */
|
|
723
|
-
convert_sort_field_to_under_score_flg?: number | null;
|
|
724
|
-
/** 是否一次只能展开一行. */
|
|
725
|
-
expand_accordion_flg?: number | null;
|
|
726
|
-
/** 界面标识(FormID). */
|
|
727
|
-
frm_id?: string | null;
|
|
728
|
-
/** 主键. */
|
|
729
|
-
id?: string | null;
|
|
730
|
-
/** 作为主键的列(IdColumn). */
|
|
731
|
-
id_clm?: string | null;
|
|
732
|
-
/** 是否支持多行选择(MultipleFlag). */
|
|
733
|
-
mult_flg?: number | null;
|
|
734
|
-
/** 单击某行时的操作. */
|
|
735
|
-
operation_on_row_click?: number | null;
|
|
736
|
-
/** 默认分页大小(PageSizeOption). */
|
|
737
|
-
pg_size_opt?: number | null;
|
|
738
|
-
/** 所有分页大小(PageSizeOptions). */
|
|
739
|
-
pg_size_opts?: string | null;
|
|
740
|
-
/** 查询条件的界面标识. */
|
|
741
|
-
prf_frm_id?: string | null;
|
|
742
|
-
/** 配置属性. */
|
|
743
|
-
props?: string | null;
|
|
744
|
-
/** 是否显示表格底部边框. */
|
|
745
|
-
show_bottom_border_flg?: number | null;
|
|
746
|
-
/** 是否显示表格底部左侧. */
|
|
747
|
-
show_bottom_left_flg?: number | null;
|
|
748
|
-
/** 是否显示表格底部右侧. */
|
|
749
|
-
show_bottom_right_flg?: number | null;
|
|
750
|
-
/** 是否显示勾选框列(ShowCheckColumnFlag). */
|
|
751
|
-
show_check_column_flg?: number | null;
|
|
752
|
-
constructor(obj?: VarGridConfig);
|
|
753
|
-
}
|
|
754
|
-
/** 表格视图明细. */
|
|
755
|
-
export declare class VarGridDetail {
|
|
756
|
-
/** 对齐方式. */
|
|
757
|
-
align?: string | null;
|
|
758
|
-
/** 显示类型. */
|
|
759
|
-
display_type?: string | null;
|
|
760
|
-
/** 显示类型的参数. */
|
|
761
|
-
display_type_properties?: string | null;
|
|
762
|
-
/** 是否显示省略号(EllipsisFlag). */
|
|
763
|
-
ellipsis_flg?: number | null;
|
|
764
|
-
/** 是否支持过滤. */
|
|
765
|
-
filter_flag?: number | null;
|
|
766
|
-
/** 是否固定到左侧(FixToLeftFlag). */
|
|
767
|
-
fix_left_flg?: number | null;
|
|
768
|
-
/** 是否固定到右侧(FixToRightFlag). */
|
|
769
|
-
fix_right_flg?: number | null;
|
|
770
|
-
/** 界面标识(FormID). */
|
|
771
|
-
frm_id?: string | null;
|
|
772
|
-
/** 视图变量名称(GridVariableName). */
|
|
773
|
-
grd_var_nam?: string | null;
|
|
774
|
-
/** 分组(GroupName). */
|
|
775
|
-
grp_nam?: string | null;
|
|
776
|
-
/** 主键. */
|
|
777
|
-
id?: string | null;
|
|
778
|
-
/** 排序方式(OrderBy). -1:没有排序; 0:升序; 1:降序. */
|
|
779
|
-
ord?: number | null;
|
|
780
|
-
/** 是否支持排序(OrderByFlag). */
|
|
781
|
-
ord_flg?: number | null;
|
|
782
|
-
/** 配置属性. */
|
|
783
|
-
props?: string | null;
|
|
784
|
-
/** 显示顺序(SortSequence). */
|
|
785
|
-
srtseq?: number | null;
|
|
786
|
-
/** 列的变量名称(VariableName). */
|
|
787
|
-
var_nam?: string | null;
|
|
788
|
-
/** 是否可见(VisibleFlag). */
|
|
789
|
-
vis_flg?: number | null;
|
|
790
|
-
/** 列宽(Width). */
|
|
791
|
-
width?: string | null;
|
|
792
|
-
constructor(obj?: VarGridDetail);
|
|
793
|
-
}
|
|
794
|
-
/** 表格视图. */
|
|
795
|
-
export declare class VarGridMaster {
|
|
796
|
-
/** 定制级别(CustomLevel). */
|
|
797
|
-
cust_lvl?: number | null;
|
|
798
|
-
/** 是否默认视图(DefaultFlag). */
|
|
799
|
-
def_flg?: number | null;
|
|
800
|
-
/** 界面标识(FormID). */
|
|
801
|
-
frm_id?: string | null;
|
|
802
|
-
/** 视图变量名称(GridVariableName). */
|
|
803
|
-
grd_var_nam?: string | null;
|
|
804
|
-
/** 分组(GroupName). */
|
|
805
|
-
grp_nam?: string | null;
|
|
806
|
-
/** 主键. */
|
|
807
|
-
id?: string | null;
|
|
808
|
-
/** 配置属性. */
|
|
809
|
-
props?: string | null;
|
|
810
|
-
/** 用户(UserID). */
|
|
811
|
-
usr_id?: string | null;
|
|
812
|
-
constructor(obj?: VarGridMaster);
|
|
813
|
-
}
|
|
814
|
-
/** 表格视图. */
|
|
815
|
-
export declare class VarGridMasterDTO {
|
|
816
|
-
/** 定制级别(CustomLevel). */
|
|
817
|
-
cust_lvl?: number | null;
|
|
818
|
-
/** 是否默认视图(DefaultFlag). */
|
|
819
|
-
def_flg?: number | null;
|
|
820
|
-
/** 界面标识(FormID). */
|
|
821
|
-
frm_id?: string | null;
|
|
822
|
-
/** 视图名称变量. */
|
|
823
|
-
grd_var_nam?: string | null;
|
|
824
|
-
/** 视图名称翻译. */
|
|
825
|
-
grd_var_nam_dsc?: string | null;
|
|
826
|
-
/** 分组(GroupName). */
|
|
827
|
-
grp_nam?: string | null;
|
|
828
|
-
/** 主键. */
|
|
829
|
-
id?: string | null;
|
|
830
|
-
/** 配置属性. */
|
|
831
|
-
props?: string | null;
|
|
832
|
-
/** 用户(UserID). */
|
|
833
|
-
usr_id?: string | null;
|
|
834
|
-
/** 用户姓名. */
|
|
835
|
-
usr_id_dsc?: string | null;
|
|
836
|
-
/** 表格视图明细列表. */
|
|
837
|
-
varGridDetails?: Array<VarGridDetail> | null;
|
|
838
|
-
constructor(obj?: VarGridMasterDTO);
|
|
839
|
-
}
|
|
840
|
-
/** 查询条件配置. */
|
|
841
|
-
export declare class VarProfileConfig {
|
|
842
|
-
/** 是否可用. */
|
|
843
|
-
available_flg?: number | null;
|
|
844
|
-
/** 界面标识(FormID). */
|
|
845
|
-
frm_id?: string | null;
|
|
846
|
-
/** 是否将头部放到页面顶部的导航栏中. */
|
|
847
|
-
header_teleport_flg?: number | null;
|
|
848
|
-
/** 主键. */
|
|
849
|
-
id?: string | null;
|
|
850
|
-
/** 配置属性. */
|
|
851
|
-
props?: string | null;
|
|
852
|
-
/** 是否支持拖动高度. */
|
|
853
|
-
resizable_flg?: number | null;
|
|
854
|
-
/** 是否显示视图下拉列表以及配置按钮. */
|
|
855
|
-
show_config_button_flag?: number | null;
|
|
856
|
-
/** 是否显示(VisibleFlag). */
|
|
857
|
-
vis_flg?: number | null;
|
|
858
|
-
constructor(obj?: VarProfileConfig);
|
|
859
|
-
}
|
|
860
|
-
/** 查询条件视图明细. */
|
|
861
|
-
export declare class VarProfileDetail {
|
|
862
|
-
/** 默认的高级查询方式(DefaultDynamicQueryOperator). */
|
|
863
|
-
dft_dyn_op?: string | null;
|
|
864
|
-
/** 是否不拼接到 WHERE SQL 中. */
|
|
865
|
-
exclude_from_where_sql_flag?: number | null;
|
|
866
|
-
/** 界面标识(FormID). */
|
|
867
|
-
frm_id?: string | null;
|
|
868
|
-
/** 分组(GroupName). */
|
|
869
|
-
grp_nam?: string | null;
|
|
870
|
-
/** 主键. */
|
|
871
|
-
id?: string | null;
|
|
872
|
-
/** 查询条件变量名称(ProfileVariableName). */
|
|
873
|
-
prf_var_nam?: string | null;
|
|
874
|
-
/** 配置属性. */
|
|
875
|
-
props?: string | null;
|
|
876
|
-
/** 显示顺序(SortSequence). */
|
|
877
|
-
srtseq?: number | null;
|
|
878
|
-
/** 高级查询时是否将字段转换为 underscore 命名方式. */
|
|
879
|
-
use_underscore_when_dynamic_query_flag?: number | null;
|
|
880
|
-
/** 变量名称(VariableName). */
|
|
881
|
-
var_nam?: string | null;
|
|
882
|
-
constructor(obj?: VarProfileDetail);
|
|
883
|
-
}
|
|
884
|
-
/** 查询条件视图. */
|
|
885
|
-
export declare class VarProfileMaster {
|
|
886
|
-
/** 定制级别(CustomLevel). */
|
|
887
|
-
cust_lvl?: number | null;
|
|
888
|
-
/** 是否是默认的视图(DefaultFlag). */
|
|
889
|
-
def_flg?: number | null;
|
|
890
|
-
/** 是否启用高级查询(DynamicQueryFlag). */
|
|
891
|
-
dyn_flg?: number | null;
|
|
892
|
-
/** 界面标识(FormID). */
|
|
893
|
-
frm_id?: string | null;
|
|
894
|
-
/** 分组(GroupName). */
|
|
895
|
-
grp_nam?: string | null;
|
|
896
|
-
/** 主键. */
|
|
897
|
-
id?: string | null;
|
|
898
|
-
/** 查询条件视图的变量名称(ProfileVariableName). */
|
|
899
|
-
prf_var_nam?: string | null;
|
|
900
|
-
/** 配置属性. */
|
|
901
|
-
props?: string | null;
|
|
902
|
-
/** 用户(UserID). */
|
|
903
|
-
usr_id?: string | null;
|
|
904
|
-
constructor(obj?: VarProfileMaster);
|
|
905
|
-
}
|
|
906
|
-
/** 查询条件. */
|
|
907
|
-
export declare class VarProfileMasterDTO {
|
|
908
|
-
/** 定制级别(CustomLevel). */
|
|
909
|
-
cust_lvl?: number | null;
|
|
910
|
-
/** 是否默认(DefaultFlag). */
|
|
911
|
-
def_flg?: number | null;
|
|
912
|
-
/** 是否启用高级查询(DynamicQueryFlag). */
|
|
913
|
-
dyn_flg?: number | null;
|
|
914
|
-
/** 界面标识(FormID). */
|
|
915
|
-
frm_id?: string | null;
|
|
916
|
-
/** 分组(GroupName). */
|
|
917
|
-
grp_nam?: string | null;
|
|
918
|
-
/** 主键. */
|
|
919
|
-
id?: string | null;
|
|
920
|
-
/** 视图名称变量. */
|
|
921
|
-
prf_var_nam?: string | null;
|
|
922
|
-
/** 配置属性. */
|
|
923
|
-
props?: string | null;
|
|
924
|
-
/** 用户(UserID). */
|
|
925
|
-
usr_id?: string | null;
|
|
926
|
-
/** 查询条件明细列表. */
|
|
927
|
-
varProfileDetails?: Array<VarProfileDetail> | null;
|
|
928
|
-
constructor(obj?: VarProfileMasterDTO);
|
|
929
|
-
}
|
|
930
|
-
/** 变量配置查询参数. */
|
|
931
|
-
export declare class VarQuery {
|
|
932
|
-
/** 界面标识(FormID). */
|
|
933
|
-
frm_id?: string | null;
|
|
934
|
-
constructor(obj?: VarQuery);
|
|
935
|
-
}
|
|
936
|
-
/** 提交表单配置. */
|
|
937
|
-
export declare class VarSubmitConfig {
|
|
938
|
-
/** 所属按钮的变量名称. */
|
|
939
|
-
button_var_name?: string | null;
|
|
940
|
-
/** 定制级别(CustomLevel). */
|
|
941
|
-
cust_lvl?: number | null;
|
|
942
|
-
/** 是否默认全屏. */
|
|
943
|
-
dft_fullscreen_flg?: number | null;
|
|
944
|
-
/** 默认宽度. */
|
|
945
|
-
dft_width?: number | null;
|
|
946
|
-
/** 显示方式. */
|
|
947
|
-
display_type?: string | null;
|
|
948
|
-
/** 界面标识. */
|
|
949
|
-
frm_id?: string | null;
|
|
950
|
-
/** 是否支持全屏. */
|
|
951
|
-
fullscreen_flg?: number | null;
|
|
952
|
-
/** 主键. */
|
|
953
|
-
id?: string | null;
|
|
954
|
-
/** 文本宽度. */
|
|
955
|
-
label_col?: number | null;
|
|
956
|
-
/** 文本宽度单位. */
|
|
957
|
-
label_col_unit?: string | null;
|
|
958
|
-
/** 布局方式. */
|
|
959
|
-
layout?: string | null;
|
|
960
|
-
/** 最大宽度. */
|
|
961
|
-
max_width?: number | null;
|
|
962
|
-
/** 最小宽度. */
|
|
963
|
-
min_width?: number | null;
|
|
964
|
-
/** 所属查询条件视图的变量名称. */
|
|
965
|
-
prf_var_nam?: string | null;
|
|
966
|
-
/** 配置属性. */
|
|
967
|
-
props?: string | null;
|
|
968
|
-
/** 是否可以拖拽改变大小. */
|
|
969
|
-
resizable_flg?: number | null;
|
|
970
|
-
/** 是否根据表单宽度自动调整字段宽度. */
|
|
971
|
-
responsive_flg?: number | null;
|
|
972
|
-
/** 是否将主键字段设为空. */
|
|
973
|
-
set_id_to_null_flag?: number | null;
|
|
974
|
-
constructor(obj?: VarSubmitConfig);
|
|
975
|
-
}
|
|
976
|
-
/** 提交表单字段. */
|
|
977
|
-
export declare class VarSubmitDetail {
|
|
978
|
-
/** 所属按钮的变量名称. */
|
|
979
|
-
button_var_name?: string | null;
|
|
980
|
-
/** 定制级别(CustomLevel). */
|
|
981
|
-
cust_lvl?: number | null;
|
|
982
|
-
/** 默认值. */
|
|
983
|
-
default_value?: string | null;
|
|
984
|
-
/** 是否可以编辑. */
|
|
985
|
-
enable_flag?: number | null;
|
|
986
|
-
/** 界面标识. */
|
|
987
|
-
frm_id?: string | null;
|
|
988
|
-
/** 分组. */
|
|
989
|
-
grp_nam?: string | null;
|
|
990
|
-
/** 主键. */
|
|
991
|
-
id?: string | null;
|
|
992
|
-
/** 是否是关键的字段. */
|
|
993
|
-
key_flg?: number | null;
|
|
994
|
-
/** 占位提示文字(Placeholder). */
|
|
995
|
-
placeholder?: string | null;
|
|
996
|
-
/** 所属查询条件视图的变量名称. */
|
|
997
|
-
prf_var_nam?: string | null;
|
|
998
|
-
/** 配置属性. */
|
|
999
|
-
props?: string | null;
|
|
1000
|
-
/** 是否必填. */
|
|
1001
|
-
required_flag?: number | null;
|
|
1002
|
-
/** 所属分组. */
|
|
1003
|
-
section?: string | null;
|
|
1004
|
-
/** 显示顺序. */
|
|
1005
|
-
srtseq?: number | null;
|
|
1006
|
-
/** 变量名称. */
|
|
1007
|
-
var_nam?: string | null;
|
|
1008
|
-
/** 是否可见. */
|
|
1009
|
-
visible_flag?: number | null;
|
|
1010
|
-
/** 表单控件宽度(Width). */
|
|
1011
|
-
width?: number | null;
|
|
1012
|
-
constructor(obj?: VarSubmitDetail);
|
|
1013
|
-
}
|
|
1014
|
-
/** 变量. */
|
|
1015
|
-
export declare class VarVariable {
|
|
1016
|
-
/** 界面标识(FormID). */
|
|
1017
|
-
frm_id?: string | null;
|
|
1018
|
-
/** 分组(GroupName). */
|
|
1019
|
-
grp_nam?: string | null;
|
|
1020
|
-
/** 主键. */
|
|
1021
|
-
id?: string | null;
|
|
1022
|
-
/** 配置属性. */
|
|
1023
|
-
props?: string | null;
|
|
1024
|
-
/** 变量名称(VariableName). */
|
|
1025
|
-
var_nam?: string | null;
|
|
1026
|
-
constructor(obj?: VarVariable);
|
|
1027
|
-
}
|
|
1028
|
-
/** 仓库数据传输对象. */
|
|
1029
|
-
export declare class WarehouseDTO {
|
|
1030
|
-
/** 是否可用. */
|
|
1031
|
-
activeFlg?: number | null;
|
|
1032
|
-
/** 地址编号. */
|
|
1033
|
-
adrId?: string | null;
|
|
1034
|
-
/** 地址名. */
|
|
1035
|
-
adrnam?: string | null;
|
|
1036
|
-
/** 默认仓库. */
|
|
1037
|
-
defWhFlg?: number | null;
|
|
1038
|
-
/** 主键. */
|
|
1039
|
-
id?: string | null;
|
|
1040
|
-
/** 创建日期. */
|
|
1041
|
-
insDt?: string | null;
|
|
1042
|
-
/** 创建人. */
|
|
1043
|
-
insUsrId?: string | null;
|
|
1044
|
-
/** 修改用户编号. */
|
|
1045
|
-
modUsrId?: string | null;
|
|
1046
|
-
/** 更新日期. */
|
|
1047
|
-
moddte?: string | null;
|
|
1048
|
-
/** 所属地/国编号. */
|
|
1049
|
-
orgcod?: string | null;
|
|
1050
|
-
/** 永久调整托盘. */
|
|
1051
|
-
permAdjLod?: string | null;
|
|
1052
|
-
/** 永久调整箱. */
|
|
1053
|
-
permAdjSub?: string | null;
|
|
1054
|
-
/** 永久创建托盘. */
|
|
1055
|
-
permCreLod?: string | null;
|
|
1056
|
-
/** 永久创建箱. */
|
|
1057
|
-
permCreSub?: string | null;
|
|
1058
|
-
/** 版本. */
|
|
1059
|
-
version?: number | null;
|
|
1060
|
-
/** 仓库名称. */
|
|
1061
|
-
whDsc?: string | null;
|
|
1062
|
-
/** 仓库编号(WarehouseId). */
|
|
1063
|
-
whId?: string | null;
|
|
1064
|
-
constructor(obj?: WarehouseDTO);
|
|
1065
|
-
}
|
|
1066
|
-
/** 工作站区域数据传输对象. */
|
|
1067
|
-
export declare class WorkstationAreaDTO {
|
|
1068
|
-
/** 主键. */
|
|
1069
|
-
id?: string | null;
|
|
1070
|
-
/** 创建日期. */
|
|
1071
|
-
insDt?: string | null;
|
|
1072
|
-
/** 创建用户. */
|
|
1073
|
-
insUsrId?: string | null;
|
|
1074
|
-
/** 修改日期. */
|
|
1075
|
-
modUsrId?: string | null;
|
|
1076
|
-
/** 修改用户. */
|
|
1077
|
-
moddte?: string | null;
|
|
1078
|
-
/** 仓库. */
|
|
1079
|
-
whId?: string | null;
|
|
1080
|
-
/** 工作区. */
|
|
1081
|
-
wrkare?: string | null;
|
|
1082
|
-
/** 工作区描述. */
|
|
1083
|
-
wrkareDsc?: string | null;
|
|
1084
|
-
constructor(obj?: WorkstationAreaDTO);
|
|
1085
|
-
}
|
|
1086
|
-
/** 工作站数据传输对象. */
|
|
1087
|
-
export declare class WorkstationDTO {
|
|
1088
|
-
/** 工作站. */
|
|
1089
|
-
devcod?: string | null;
|
|
1090
|
-
/** 工作站描述. */
|
|
1091
|
-
devcodDsc?: string | null;
|
|
1092
|
-
/** 主工作区. */
|
|
1093
|
-
hmewrkare?: string | null;
|
|
1094
|
-
/** 主工作区描述. */
|
|
1095
|
-
hmewrkareDsc?: string | null;
|
|
1096
|
-
/** 主键. */
|
|
1097
|
-
id?: string | null;
|
|
1098
|
-
/** 创建日期. */
|
|
1099
|
-
insDt?: string | null;
|
|
1100
|
-
/** 创建用户. */
|
|
1101
|
-
insUsrId?: string | null;
|
|
1102
|
-
/** 标签打印机(Label Printer Address). */
|
|
1103
|
-
lblPrtadr?: string | null;
|
|
1104
|
-
/** 标签打印机名称. */
|
|
1105
|
-
lblPrtadrDsc?: string | null;
|
|
1106
|
-
/** 便携标签打印机(Mobile Printer Address). */
|
|
1107
|
-
mobPrtadr?: string | null;
|
|
1108
|
-
/** 便携标签打印机名称. */
|
|
1109
|
-
mobPrtadrDsc?: string | null;
|
|
1110
|
-
/** 修改日期. */
|
|
1111
|
-
modUsrId?: string | null;
|
|
1112
|
-
/** 修改用户. */
|
|
1113
|
-
moddte?: string | null;
|
|
1114
|
-
/** 纸张打印机(Paper Printer Address). */
|
|
1115
|
-
papPrtadr?: string | null;
|
|
1116
|
-
/** 纸张打印机名称. */
|
|
1117
|
-
papPrtadrDsc?: string | null;
|
|
1118
|
-
/** 仓库. */
|
|
1119
|
-
whId?: string | null;
|
|
1120
|
-
/** 工作站与工作区域关系. */
|
|
1121
|
-
workstationAndAreaRelationshipDTOList?: Array<WorkstationAreaDTO> | null;
|
|
1122
|
-
constructor(obj?: WorkstationDTO);
|
|
1123
|
-
}
|
|
1124
|
-
/**
|
|
1125
|
-
* 获取对象的属性名数组.
|
|
1126
|
-
* @param obj 对象.
|
|
1127
|
-
*/
|
|
1128
|
-
export declare function keys<C extends object>(obj: C): Array<keyof C>;
|