@ningboyz/types 1.0.14 → 1.0.15
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
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const CONST_GZJG_GZLM_FLLX_TO_数值 = 0; // #数值
|
|
2
|
+
export const CONST_GZJG_GZLM_FLLX_TO_文本 = 1; // #文本
|
|
3
|
+
export const CONST_GZJG_GZLM_FLLX_TO_备注 = 2; // #备注
|
|
4
|
+
export const CONST_GZJG_GZLM_FLLX_TO_日期 = 3; // #日期
|
|
5
|
+
export const CONST_GZJG_GZLM_FLLX_TO_字典 = 4; // #字典
|
|
6
|
+
export const CONST_GZJG_GZLM_FLLX_TO_整型 = 5; // #整型
|
|
7
|
+
export const CONST_GZJG_GZLM_FLLX_TO_布尔 = 6; // #布尔
|
|
8
|
+
export const CONST_GZJG_GZLM_FLLX_TO_图片 = 7; // #图片
|
|
9
|
+
export const CONST_GZJG_GZLM_FLLX_TO_表格 = 8; // #表格
|
package/src/const/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ import * as Cnfg from "./const_cnfg";
|
|
|
5
5
|
import * as DataFrom from "./const_data_from";
|
|
6
6
|
import * as Elem from "./const_elem";
|
|
7
7
|
import * as Flow from "./const_flow";
|
|
8
|
+
import * as Gzlm from "./const_gzlm";
|
|
8
9
|
import * as GamsMode from "./const_gams_mode";
|
|
9
10
|
import * as Myoa from "./const_myoa";
|
|
10
11
|
import * as Part from "./const_part";
|
|
@@ -19,4 +20,4 @@ import * as Zbzd from "./const_zbzd";
|
|
|
19
20
|
import * as Align from "./const_align";
|
|
20
21
|
import * as Stat from "./const_stat";
|
|
21
22
|
|
|
22
|
-
export { Audit, Card, Clas, Cnfg, DataFrom, Elem, Flow, GamsMode, Myoa, Part, TakeType, Todo, Travel,
|
|
23
|
+
export { Align, Audit, Card, Clas, Cnfg, DataFrom, Elem, Flow, GamsMode, Gzlm, Myoa, Part, Stat, TakeType, Todo, Travel, Type, TypeName, User, Yiha, Zbzd };
|
|
@@ -28,6 +28,7 @@ export interface IWldyDataResponse {
|
|
|
28
28
|
dataName: string;
|
|
29
29
|
dataMemo: string;
|
|
30
30
|
dataAttr: string;
|
|
31
|
+
asStatic: number;
|
|
31
32
|
loadText: string;
|
|
32
33
|
|
|
33
34
|
listItem: IWldyItemResponse[];
|
|
@@ -60,6 +61,7 @@ export class TWldyDataResponse implements IWldyDataResponse {
|
|
|
60
61
|
dataName: string = "";
|
|
61
62
|
dataMemo: string = "";
|
|
62
63
|
dataAttr: string = "";
|
|
64
|
+
asStatic: number = 0;
|
|
63
65
|
loadText: string = "";
|
|
64
66
|
|
|
65
67
|
listItem: IWldyItemResponse[] = [];
|
|
@@ -27,6 +27,7 @@ export interface IWldyItemResponse {
|
|
|
27
27
|
itemName: string;
|
|
28
28
|
itemMemo: string;
|
|
29
29
|
itemAttr: string;
|
|
30
|
+
itemType: number;
|
|
30
31
|
valueOld: string;
|
|
31
32
|
valudNew: string;
|
|
32
33
|
nonEmpty: number;
|
|
@@ -61,6 +62,7 @@ export class TWldyItemResponse implements IWldyItemResponse {
|
|
|
61
62
|
itemName: string = "";
|
|
62
63
|
itemMemo: string = "";
|
|
63
64
|
itemAttr: string = "";
|
|
65
|
+
itemType: number = 0;
|
|
64
66
|
valueOld: string = "";
|
|
65
67
|
valudNew: string = "";
|
|
66
68
|
nonEmpty: number = 0;
|