@ningboyz/types 1.0.161 → 1.0.162
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 +1 -1
- package/src/gams/IGamsTypeResponse.ts +109 -0
- package/src/gams/index.ts +4 -1
package/package.json
CHANGED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export interface IGamsTypeResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
sourceND: number;
|
|
5
|
+
sourceID: number;
|
|
6
|
+
typeIndx: number;
|
|
7
|
+
typeMain: number;
|
|
8
|
+
|
|
9
|
+
parentID: number;
|
|
10
|
+
hashCode: number;
|
|
11
|
+
dataLevl: number;
|
|
12
|
+
dataFrom: number;
|
|
13
|
+
kjndKJQJ: number;
|
|
14
|
+
dataStat: number;
|
|
15
|
+
dataOrdr: number;
|
|
16
|
+
dataDate: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataHide: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
mastName: string;
|
|
21
|
+
mastGUID: string;
|
|
22
|
+
createBy: string;
|
|
23
|
+
createAt: number;
|
|
24
|
+
updateBy: string;
|
|
25
|
+
updateAt: number;
|
|
26
|
+
deleteBy: string;
|
|
27
|
+
deleteAt: number;
|
|
28
|
+
queuesBy: number;
|
|
29
|
+
entityID: string;
|
|
30
|
+
typeCode: string;
|
|
31
|
+
typeName: string;
|
|
32
|
+
codeRule: string;
|
|
33
|
+
unionTxt: string;
|
|
34
|
+
compatBM: string;
|
|
35
|
+
compatMC: string;
|
|
36
|
+
typeSzlx: number;
|
|
37
|
+
typeMemo: string;
|
|
38
|
+
itemCome: number;
|
|
39
|
+
fromType: number;
|
|
40
|
+
formType: string;
|
|
41
|
+
multiVal: number;
|
|
42
|
+
cDefault: string;
|
|
43
|
+
nDefault: string;
|
|
44
|
+
uDefault: string;
|
|
45
|
+
colWidth: number;
|
|
46
|
+
typePara: string;
|
|
47
|
+
whatEver: number;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export class TGamsTypeResponse implements IGamsTypeResponse {
|
|
51
|
+
whoBuild: number = 0;
|
|
52
|
+
userIndx: number = 0;
|
|
53
|
+
sourceND: number = 0;
|
|
54
|
+
sourceID: number = 0;
|
|
55
|
+
|
|
56
|
+
typeIndx: number = 0;
|
|
57
|
+
typeMain: number = 0;
|
|
58
|
+
|
|
59
|
+
parentID: number = 0;
|
|
60
|
+
hashCode: number = 0;
|
|
61
|
+
dataLevl: number = 0;
|
|
62
|
+
dataFrom: number = 0;
|
|
63
|
+
kjndKJQJ: number = 0;
|
|
64
|
+
dataStat: number = 0;
|
|
65
|
+
dataOrdr: number = 0;
|
|
66
|
+
dataDate: number = 0;
|
|
67
|
+
dataTime: number = 0;
|
|
68
|
+
dataHide: number = 0;
|
|
69
|
+
dataGUID: string = "";
|
|
70
|
+
mastName: string = "";
|
|
71
|
+
mastGUID: string = "";
|
|
72
|
+
createBy: string = "";
|
|
73
|
+
createAt: number = 0;
|
|
74
|
+
updateBy: string = "";
|
|
75
|
+
updateAt: number = 0;
|
|
76
|
+
deleteBy: string = "";
|
|
77
|
+
deleteAt: number = 0;
|
|
78
|
+
queuesBy: number = 0;
|
|
79
|
+
entityID: string = "";
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
typeCode: string = "";
|
|
83
|
+
/** 要素名称 */
|
|
84
|
+
typeName: string = "";
|
|
85
|
+
/** 编码规则 */
|
|
86
|
+
codeRule: string = "";
|
|
87
|
+
|
|
88
|
+
unionTxt: string = "";
|
|
89
|
+
/** 兼容编码 */
|
|
90
|
+
compatBM: string = "";
|
|
91
|
+
/** 兼容名称 */
|
|
92
|
+
compatMC: string = "";
|
|
93
|
+
typeSzlx: number = 0;
|
|
94
|
+
/** 要素备注 */
|
|
95
|
+
typeMemo: string = "";
|
|
96
|
+
itemCome: number = 0;
|
|
97
|
+
fromType: number = 0;
|
|
98
|
+
/** 表单形式 */
|
|
99
|
+
formType: string = "";
|
|
100
|
+
multiVal: number = 0;
|
|
101
|
+
cDefault: string = "";
|
|
102
|
+
nDefault: string = "";
|
|
103
|
+
uDefault: string = "";
|
|
104
|
+
colWidth: number = 0;
|
|
105
|
+
/** 参数约定 */
|
|
106
|
+
typePara: string = "";
|
|
107
|
+
/** 允许任意匹配 */
|
|
108
|
+
whatEver: number = 0;
|
|
109
|
+
}
|
package/src/gams/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { IGamsBillResponse, TGamsBillResponse } from "./IGamsBillResponse";
|
|
|
3
3
|
import { IGamsEachResponse, TGamsEachResponse } from "./IGamsEachResponse";
|
|
4
4
|
import { IZbhdMainResponese, TZbhdMainResponese } from "./IZbhdMainResponese";
|
|
5
5
|
import { IGamsMainResponse, TGamsMainResponse } from "./IGamsMainResponse";
|
|
6
|
+
import { IGamsTypeResponse, TGamsTypeResponse }from "./IGamsTypeResponse";
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
type IGamsBillResponse,
|
|
@@ -10,9 +11,11 @@ export {
|
|
|
10
11
|
type IGamsEachResponse,
|
|
11
12
|
type IGamsMainResponse,
|
|
12
13
|
type IZbhdMainResponese,
|
|
14
|
+
type IGamsTypeResponse,
|
|
13
15
|
TGamsBillResponse,
|
|
14
16
|
TGamsCnfgResponse,
|
|
15
17
|
TGamsEachResponse,
|
|
16
18
|
TGamsMainResponse,
|
|
17
|
-
TZbhdMainResponese
|
|
19
|
+
TZbhdMainResponese,
|
|
20
|
+
TGamsTypeResponse
|
|
18
21
|
};
|