@kengic/vue 0.28.1-beta.10 → 0.28.1-beta.11

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.
@@ -0,0 +1,16 @@
1
+ import { IRequestConfig, IRequestOptions } from '../../../../service';
2
+ import * as DEF from '../../../def';
3
+ /** 请求参数. */
4
+ export declare class ExecuteQuery {
5
+ }
6
+ /**
7
+ * 执行语句.
8
+ *
9
+ * @param config 请求配置.
10
+ * @param option 请求选项.
11
+ */
12
+ export declare function Execute(config?: IRequestConfig<ExecuteQuery, DEF.WMS.ExecuteQuery>, option?: IRequestOptions): Promise<Array<DEF.WMS.ExecuteResultDTO>>;
13
+ export declare namespace Execute {
14
+ var method: "POST";
15
+ var url: string;
16
+ }
@@ -0,0 +1 @@
1
+ export { Execute, ExecuteQuery } from './Execute';
@@ -1,4 +1,5 @@
1
1
  export * as DescriptionController from './DescriptionController';
2
+ export * as SqlClientController from './SqlClientController';
2
3
  export * as SysPermissionController from './SysPermissionController';
3
4
  export * as VarController from './VarController';
4
5
  export * as VarConfigDescriptionController from './VarConfigDescriptionController';
@@ -138,6 +138,20 @@ export declare class DescriptionDTO {
138
138
  version?: number | null;
139
139
  constructor(obj?: DescriptionDTO);
140
140
  }
141
+ /** 执行语句的参数. */
142
+ export declare class ExecuteQuery {
143
+ /** SQL. */
144
+ sql?: string | null;
145
+ constructor(obj?: ExecuteQuery);
146
+ }
147
+ /** 执行语句的结果. */
148
+ export declare class ExecuteResultDTO {
149
+ /** 执行结果消息. */
150
+ message?: string | null;
151
+ /** 该结果对应的语句. */
152
+ sql?: string | null;
153
+ constructor(obj?: ExecuteResultDTO);
154
+ }
141
155
  /** 获取 SQL 查询结果的元数据. */
142
156
  export declare class GetResultSetMetadataFromSqlQuery {
143
157
  /** SQL. */
@@ -1056,7 +1070,7 @@ export declare class WorkstationDTO {
1056
1070
  /** 仓库. */
1057
1071
  whId?: string | null;
1058
1072
  /** 工作站与工作区域关系. */
1059
- workstationAreas?: Array<WorkstationAreaDTO> | null;
1073
+ workstationAndAreaRelationshipDTOList?: Array<WorkstationAreaDTO> | null;
1060
1074
  constructor(obj?: WorkstationDTO);
1061
1075
  }
1062
1076
  /**
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -241,6 +241,7 @@ declare const _default: {
241
241
  edit: string;
242
242
  empty: string;
243
243
  emptyText: string;
244
+ execute: string;
244
245
  executeSuccess: string;
245
246
  export: string;
246
247
  exportSuccess: string;
@@ -242,6 +242,7 @@ declare const _default: {
242
242
  edit: string;
243
243
  empty: string;
244
244
  emptyText: string;
245
+ execute: string;
245
246
  executeSuccess: string;
246
247
  export: string;
247
248
  exportSuccess: string;
@@ -0,0 +1,12 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import './KgPageSqlClient.css';
3
+ export declare const getProps: () => any;
4
+ export declare type IKgPageSqlClientProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
5
+ /**
6
+ * <p>系统管理/系统管理/数据操作.</p>
7
+ * <p>通过页面执行 SQL 语句, 记录执行人等相关信息.</p>
8
+ */
9
+ declare const _default: import("vue").DefineComponent<any, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
10
+ [x: string]: any;
11
+ }>;
12
+ export default _default;
@@ -0,0 +1,5 @@
1
+ declare const _default: import("vue").DefineComponent<any, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
2
+ [x: string]: any;
3
+ }>;
4
+ export default _default;
5
+ export { type IKgPageSqlClientProps } from './KgPageSqlClient';
@@ -1,5 +1,3 @@
1
- export * from './KgPageDda';
2
- export { default as KgPageDda } from './KgPageDda';
3
1
  /**
4
2
  * 路由.
5
3
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.28.1-beta.10",
3
+ "version": "0.28.1-beta.11",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
@@ -39,7 +39,7 @@
39
39
  "@iconify-icons/ph": "1.2.5",
40
40
  "@iconify/vue": "4.1.2",
41
41
  "@kengic/core.core": "0.0.1-beta.22",
42
- "@kengic/core.react": "0.0.2-beta.9",
42
+ "@kengic/core.react": "0.0.2-beta.10",
43
43
  "@kengic/pont": "1.2.17-beta.5",
44
44
  "@rys-fe/vite-plugin-theme": "0.8.6",
45
45
  "@thymine/xunee": "0.4.9-beta.8",