@kengic/core.react 0.0.2-beta.2 → 0.0.2-beta.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/core.react",
3
- "version": "0.0.2-beta.2",
3
+ "version": "0.0.2-beta.20",
4
4
  "type": "module",
5
5
  "main": "./kengic-core.react.js",
6
6
  "module": "./kengic-core.react.js",
@@ -39,20 +39,34 @@ export declare class WorkstationDTO {
39
39
  devcodDsc?: string | null;
40
40
  /** 主工作区. */
41
41
  hmewrkare?: string | null;
42
+ /** 主工作区描述. */
43
+ hmewrkareDsc?: string | null;
42
44
  /** 主键. */
43
45
  id?: string | null;
44
46
  /** 创建日期. */
45
47
  insDt?: string | null;
46
48
  /** 创建用户. */
47
49
  insUsrId?: string | null;
50
+ /** 标签打印机(Label Printer Address). */
51
+ lblPrtadr?: string | null;
52
+ /** 标签打印机名称. */
53
+ lblPrtadrDsc?: string | null;
54
+ /** 便携标签打印机(Mobile Printer Address). */
55
+ mobPrtadr?: string | null;
56
+ /** 便携标签打印机名称. */
57
+ mobPrtadrDsc?: string | null;
48
58
  /** 修改日期. */
49
59
  modUsrId?: string | null;
50
60
  /** 修改用户. */
51
61
  moddte?: string | null;
62
+ /** 纸张打印机(Paper Printer Address). */
63
+ papPrtadr?: string | null;
64
+ /** 纸张打印机名称. */
65
+ papPrtadrDsc?: string | null;
52
66
  /** 仓库. */
53
67
  whId?: string | null;
54
68
  /** 工作站与工作区域关系. */
55
- workstationAreas?: Array<WorkstationAreaDTO> | null;
69
+ workstationAndAreaRelationshipDTOList?: Array<WorkstationAreaDTO> | null;
56
70
  constructor(obj?: WorkstationDTO);
57
71
  }
58
72
  /**
@@ -11,7 +11,7 @@ export type IKgWorkStationOnOkEventListenerParameter = {};
11
11
  export type IKgWorkStationOnOkEventListener = ((param: IKgWorkStationOnOkEventListenerParameter) => Promise<boolean>) & IKgEventListener;
12
12
  export type IKgWorkStationEventListenerParameter = IKgWorkStationOnMountEventListenerParameter | IKgWorkStationOnOkEventListenerParameter;
13
13
  export type IKgWorkStationEventListener = IKgWorkStationOnMountEventListener | IKgWorkStationOnOkEventListener;
14
- export declare const eventListenerListRecordRecord: Record<string, {
14
+ export declare const eventListeners: Record<string, {
15
15
  onMount: Array<IKgWorkStationOnMountEventListener>;
16
16
  onOk: Array<IKgWorkStationOnOkEventListener>;
17
17
  }>;
@@ -65,6 +65,7 @@ export interface IDoKgWorkStation {
65
65
  workStationArea: WorkstationAreaDTO | null;
66
66
  }
67
67
  /**
68
+ * 在 react 中如果函数以 use 为前缀, 会被当成 hook 函数, 因此这个函数使用了 do 作为前缀.
68
69
  *
69
70
  * @param id 唯一标识.
70
71
  */