@ningboyz/types 1.0.161 → 1.0.163
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/core/IUnitBindResponse.ts +62 -0
- package/src/core/IUnitResponse.ts +1 -0
- package/src/core/index.ts +3 -0
- package/src/gams/IGamsItemResponse.ts +83 -0
- package/src/gams/IGamsK0kmResponse.ts +88 -0
- package/src/gams/IGamsK8kmResponse.ts +123 -0
- package/src/gams/IGamsTypeResponse.ts +113 -0
- package/src/gams/index.ts +6 -3
- package/src/load/ILoadZydwResponse.ts +57 -0
- package/src/load/index.ts +2 -1
- package/src/noti/INotiMainResponse.ts +7 -2
- package/src/yzcg/IYzcgMainResponse.ts +2 -2
- package/src/zbhd/IZbhdMainResponese.ts +2 -2
- package/src/zbhd/index.ts +2 -2
- package/src/gams/IZbhdMainResponese.ts +0 -166
package/package.json
CHANGED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export interface IUnitBindResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
unitIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataType: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
createBy: string;
|
|
14
|
+
createAt: number;
|
|
15
|
+
updateBy: string;
|
|
16
|
+
updateAt: number;
|
|
17
|
+
deleteBy: string;
|
|
18
|
+
deleteAt: number;
|
|
19
|
+
marchKey: string;
|
|
20
|
+
marchVal: string;
|
|
21
|
+
zydwUUID: string;
|
|
22
|
+
zydwText: string;
|
|
23
|
+
yqdwUUID: string;
|
|
24
|
+
yqdwText: string;
|
|
25
|
+
yzdwText: string;
|
|
26
|
+
yzdwCode: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class TUnitBindResponse implements IUnitBindResponse {
|
|
30
|
+
whoBuild: number = 0;
|
|
31
|
+
userIndx: number = 0;
|
|
32
|
+
unitIndx: number = 0;
|
|
33
|
+
idEntity: number = 0;
|
|
34
|
+
dataStat: number = 0;
|
|
35
|
+
dataHide: number = 0;
|
|
36
|
+
dataOrdr: number = 0;
|
|
37
|
+
dataFrom: number = 0;
|
|
38
|
+
dataType: number = 0;
|
|
39
|
+
dataDate: number = 0;
|
|
40
|
+
dataTime: number = 0;
|
|
41
|
+
createBy: string = "";
|
|
42
|
+
createAt: number = 0;
|
|
43
|
+
updateBy: string = "";
|
|
44
|
+
updateAt: number = 0;
|
|
45
|
+
deleteBy: string = "";
|
|
46
|
+
deleteAt: number = 0;
|
|
47
|
+
marchKey: string = "";
|
|
48
|
+
marchVal: string = "";
|
|
49
|
+
|
|
50
|
+
/** 正元单位.标识 */
|
|
51
|
+
zydwUUID: string = "";
|
|
52
|
+
/** 正元单位.名称 */
|
|
53
|
+
zydwText: string = "";
|
|
54
|
+
/** 祐全单位.标识 */
|
|
55
|
+
yqdwUUID: string = "";
|
|
56
|
+
/** 祐全单位.名称 */
|
|
57
|
+
yqdwText: string = "";
|
|
58
|
+
/** 甬政单位.名称 */
|
|
59
|
+
yzdwText: string = "";
|
|
60
|
+
/** 甬政单位.编码 */
|
|
61
|
+
yzdwCode: string = "";
|
|
62
|
+
}
|
package/src/core/index.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { ISysMenuWithCoreResponse, TSysMenuWithCoreResponse } from "./ISysMenuWi
|
|
|
11
11
|
import { ISysMenuWithExpdResponse, TSysMenuWithExpdResponse } from "./ISysMenuWithExpdResponse";
|
|
12
12
|
import { ITypeResponse, TTypeResponse } from "./ITypeResponse";
|
|
13
13
|
import { IUnitResponse, TUnitResponse } from "./IUnitResponse";
|
|
14
|
+
import { IUnitBindResponse, TUnitBindResponse } from "./IUnitBindResponse";
|
|
14
15
|
import { IUserAcnoResponse, TUserAcnoResponse } from "./IUserAcnoResponse";
|
|
15
16
|
import { IUserFindResponse, TUserFindResponse } from "./IUserFindResponse";
|
|
16
17
|
import { IUserResponse, TUserResponse } from "./IUserResponse";
|
|
@@ -40,6 +41,7 @@ export {
|
|
|
40
41
|
type ISysTravelWithParaResponse,
|
|
41
42
|
type ITypeResponse,
|
|
42
43
|
type IUnitResponse,
|
|
44
|
+
type IUnitBindResponse,
|
|
43
45
|
type IUserAcnoResponse,
|
|
44
46
|
type IUserFindResponse,
|
|
45
47
|
type IUserLiteResponse,
|
|
@@ -65,6 +67,7 @@ export {
|
|
|
65
67
|
TSysTravelWithParaResponse,
|
|
66
68
|
TTypeResponse,
|
|
67
69
|
TUnitResponse,
|
|
70
|
+
TUnitBindResponse,
|
|
68
71
|
TUserAcnoResponse,
|
|
69
72
|
TUserFindResponse,
|
|
70
73
|
TUserLiteResponse,
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/*
|
|
2
|
+
标准项目
|
|
3
|
+
/gams/titem/
|
|
4
|
+
*/
|
|
5
|
+
export interface IGamsItemResponse {
|
|
6
|
+
whoBuild: number;
|
|
7
|
+
userIndx: number;
|
|
8
|
+
sourceND: number;
|
|
9
|
+
sourceID: number;
|
|
10
|
+
itemIndx: number;
|
|
11
|
+
itemMain: number;
|
|
12
|
+
typeMain: number;
|
|
13
|
+
|
|
14
|
+
parentID: number;
|
|
15
|
+
hashCode: number;
|
|
16
|
+
dataLevl: number;
|
|
17
|
+
dataFrom: number;
|
|
18
|
+
kjndKJQJ: number;
|
|
19
|
+
dataStat: number;
|
|
20
|
+
dataOrdr: number;
|
|
21
|
+
dataDate: number;
|
|
22
|
+
dataTime: number;
|
|
23
|
+
dataHide: number;
|
|
24
|
+
dataGUID: string;
|
|
25
|
+
mastName: string;
|
|
26
|
+
mastGUID: string;
|
|
27
|
+
createBy: string;
|
|
28
|
+
createAt: number;
|
|
29
|
+
updateBy: string;
|
|
30
|
+
updateAt: number;
|
|
31
|
+
deleteBy: string;
|
|
32
|
+
deleteAt: number;
|
|
33
|
+
queuesBy: number;
|
|
34
|
+
entityID: string;
|
|
35
|
+
|
|
36
|
+
itemCode: string;
|
|
37
|
+
itemName: string;
|
|
38
|
+
itemMemo: string;
|
|
39
|
+
multiVal: number;
|
|
40
|
+
itemPara: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export class TGamsItemResponse implements IGamsItemResponse {
|
|
44
|
+
whoBuild: number = 0;
|
|
45
|
+
userIndx: number = 0;
|
|
46
|
+
sourceND: number = 0;
|
|
47
|
+
sourceID: number = 0;
|
|
48
|
+
itemIndx: number = 0;
|
|
49
|
+
itemMain: number = 0;
|
|
50
|
+
|
|
51
|
+
typeMain: number = 0;
|
|
52
|
+
parentID: number = 0;
|
|
53
|
+
hashCode: number = 0;
|
|
54
|
+
dataLevl: number = 0;
|
|
55
|
+
dataFrom: number = 0;
|
|
56
|
+
kjndKJQJ: number = 0;
|
|
57
|
+
dataStat: number = 0;
|
|
58
|
+
dataOrdr: number = 0;
|
|
59
|
+
dataDate: number = 0;
|
|
60
|
+
dataTime: number = 0;
|
|
61
|
+
dataHide: number = 0;
|
|
62
|
+
dataGUID: string = "";
|
|
63
|
+
mastName: string = "";
|
|
64
|
+
mastGUID: string = "";
|
|
65
|
+
createBy: string = "";
|
|
66
|
+
createAt: number = 0;
|
|
67
|
+
updateBy: string = "";
|
|
68
|
+
updateAt: number = 0;
|
|
69
|
+
deleteBy: string = "";
|
|
70
|
+
deleteAt: number = 0;
|
|
71
|
+
queuesBy: number = 0;
|
|
72
|
+
entityID: string = "";
|
|
73
|
+
|
|
74
|
+
/** 项目编码 */
|
|
75
|
+
itemCode: string = "";
|
|
76
|
+
/** 项目名称 */
|
|
77
|
+
itemName: string = "";
|
|
78
|
+
/** 备注信息 */
|
|
79
|
+
itemMemo: string = "";
|
|
80
|
+
multiVal: number = 0;
|
|
81
|
+
/** 参数约定 */
|
|
82
|
+
itemPara: string = "";
|
|
83
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/*
|
|
2
|
+
科目分类
|
|
3
|
+
/gams/tk0km/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { IDictResponse } from "../core";
|
|
7
|
+
|
|
8
|
+
export interface IGamsK0kmResponse {
|
|
9
|
+
whoBuild: number;
|
|
10
|
+
userIndx: number;
|
|
11
|
+
sourceND: number;
|
|
12
|
+
sourceID: number;
|
|
13
|
+
k0kmKmid: number;
|
|
14
|
+
parentID: number;
|
|
15
|
+
hashCode: number;
|
|
16
|
+
dataLevl: number;
|
|
17
|
+
dataFrom: number;
|
|
18
|
+
kjndKJQJ: number;
|
|
19
|
+
dataStat: number;
|
|
20
|
+
dataOrdr: number;
|
|
21
|
+
dataDate: number;
|
|
22
|
+
dataTime: number;
|
|
23
|
+
dataHide: number;
|
|
24
|
+
dataGUID: string;
|
|
25
|
+
mastName: string;
|
|
26
|
+
mastGUID: string;
|
|
27
|
+
createBy: string;
|
|
28
|
+
createAt: number;
|
|
29
|
+
updateBy: string;
|
|
30
|
+
updateAt: number;
|
|
31
|
+
deleteBy: string;
|
|
32
|
+
deleteAt: number;
|
|
33
|
+
queuesBy: number;
|
|
34
|
+
entityID: string;
|
|
35
|
+
k0kmKmbm: string;
|
|
36
|
+
k0kmKmmc: string;
|
|
37
|
+
parentCd: string;
|
|
38
|
+
isLasted: number;
|
|
39
|
+
k0kmPara: string;
|
|
40
|
+
dictText: string;
|
|
41
|
+
|
|
42
|
+
listDict: IDictResponse[];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export class TGamsK0kmResponse implements IGamsK0kmResponse {
|
|
46
|
+
whoBuild: number = 0;
|
|
47
|
+
userIndx: number = 0;
|
|
48
|
+
sourceND: number = 0;
|
|
49
|
+
/** 账套标识 */
|
|
50
|
+
sourceID: number = 0;
|
|
51
|
+
/** 分类编码 */
|
|
52
|
+
k0kmKmid: number = 0;
|
|
53
|
+
|
|
54
|
+
parentID: number = 0;
|
|
55
|
+
hashCode: number = 0;
|
|
56
|
+
dataLevl: number = 0;
|
|
57
|
+
dataFrom: number = 0;
|
|
58
|
+
kjndKJQJ: number = 0;
|
|
59
|
+
dataStat: number = 0;
|
|
60
|
+
dataOrdr: number = 0;
|
|
61
|
+
dataDate: number = 0;
|
|
62
|
+
dataTime: number = 0;
|
|
63
|
+
dataHide: number = 0;
|
|
64
|
+
dataGUID: string = "";
|
|
65
|
+
mastName: string = "";
|
|
66
|
+
mastGUID: string = "";
|
|
67
|
+
createBy: string = "";
|
|
68
|
+
createAt: number = 0;
|
|
69
|
+
updateBy: string = "";
|
|
70
|
+
updateAt: number = 0;
|
|
71
|
+
deleteBy: string = "";
|
|
72
|
+
deleteAt: number = 0;
|
|
73
|
+
queuesBy: number = 0;
|
|
74
|
+
entityID: string = "";
|
|
75
|
+
/** 分类编码 */
|
|
76
|
+
k0kmKmbm: string = "";
|
|
77
|
+
/** 分类名称 */
|
|
78
|
+
k0kmKmmc: string = "";
|
|
79
|
+
parentCd: string = "";
|
|
80
|
+
isLasted: number = 0;
|
|
81
|
+
/** 参数约定 */
|
|
82
|
+
k0kmPara: string = "";
|
|
83
|
+
/** 系统字典.文本 */
|
|
84
|
+
dictText: string = "";
|
|
85
|
+
|
|
86
|
+
/** 系统字典.列表 */
|
|
87
|
+
listDict: IDictResponse[] = [];
|
|
88
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/*
|
|
2
|
+
报销科目
|
|
3
|
+
/gams/tk8km/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export interface IGamsK8kmResponse {
|
|
7
|
+
whoBuild: number;
|
|
8
|
+
userIndx: number;
|
|
9
|
+
sourceND: number;
|
|
10
|
+
sourceID: number;
|
|
11
|
+
k8kmKmid: number;
|
|
12
|
+
|
|
13
|
+
k0kmKmid: number;
|
|
14
|
+
parentID: number;
|
|
15
|
+
hashCode: number;
|
|
16
|
+
dataLevl: number;
|
|
17
|
+
dataFrom: number;
|
|
18
|
+
kjndKJQJ: number;
|
|
19
|
+
dataStat: number;
|
|
20
|
+
dataOrdr: number;
|
|
21
|
+
dataDate: number;
|
|
22
|
+
dataTime: number;
|
|
23
|
+
dataHide: number;
|
|
24
|
+
dataGUID: string;
|
|
25
|
+
mastName: string;
|
|
26
|
+
mastGUID: string;
|
|
27
|
+
createBy: string;
|
|
28
|
+
createAt: number;
|
|
29
|
+
updateBy: string;
|
|
30
|
+
updateAt: number;
|
|
31
|
+
deleteBy: string;
|
|
32
|
+
deleteAt: number;
|
|
33
|
+
queuesBy: number;
|
|
34
|
+
entityID: string;
|
|
35
|
+
onNumber: number;
|
|
36
|
+
isLasted: number;
|
|
37
|
+
typeSize: number;
|
|
38
|
+
typeText: string;
|
|
39
|
+
k8kmKmbm: string;
|
|
40
|
+
k8kmKmmc: string;
|
|
41
|
+
k0kmText: string;
|
|
42
|
+
deptText: string;
|
|
43
|
+
parentCd: string;
|
|
44
|
+
formType: string;
|
|
45
|
+
basisTxt: string;
|
|
46
|
+
inReturn: number;
|
|
47
|
+
k8kmMemo: string;
|
|
48
|
+
k8kmPara: string;
|
|
49
|
+
jsScript: string;
|
|
50
|
+
k8kmCtrl: number;
|
|
51
|
+
usesYzcg: number;
|
|
52
|
+
zjlySize: number;
|
|
53
|
+
zjlyText: string;
|
|
54
|
+
zbhdText: string;
|
|
55
|
+
usesYzht: number;
|
|
56
|
+
zjlyFrom: number;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export class TGamsK8kmResponse implements IGamsK8kmResponse {
|
|
60
|
+
whoBuild: number = 0;
|
|
61
|
+
userIndx: number = 0;
|
|
62
|
+
sourceND: number = 0;
|
|
63
|
+
/** 账套标识 */
|
|
64
|
+
sourceID: number = 0;
|
|
65
|
+
/** 科目标识 */
|
|
66
|
+
k8kmKmid: number = 0;
|
|
67
|
+
|
|
68
|
+
k0kmKmid: number = 0;
|
|
69
|
+
parentID: number = 0;
|
|
70
|
+
hashCode: number = 0;
|
|
71
|
+
dataLevl: number = 0;
|
|
72
|
+
dataFrom: number = 0;
|
|
73
|
+
kjndKJQJ: number = 0;
|
|
74
|
+
dataStat: number = 0;
|
|
75
|
+
dataOrdr: number = 0;
|
|
76
|
+
dataDate: number = 0;
|
|
77
|
+
dataTime: number = 0;
|
|
78
|
+
dataHide: number = 0;
|
|
79
|
+
dataGUID: string = "";
|
|
80
|
+
mastName: string = "";
|
|
81
|
+
mastGUID: string = "";
|
|
82
|
+
createBy: string = "";
|
|
83
|
+
createAt: number = 0;
|
|
84
|
+
updateBy: string = "";
|
|
85
|
+
updateAt: number = 0;
|
|
86
|
+
deleteBy: string = "";
|
|
87
|
+
deleteAt: number = 0;
|
|
88
|
+
queuesBy: number = 0;
|
|
89
|
+
entityID: string = "";
|
|
90
|
+
|
|
91
|
+
onNumber: number = 0;
|
|
92
|
+
isLasted: number = 0;
|
|
93
|
+
typeSize: number = 0;
|
|
94
|
+
typeText: string = "";
|
|
95
|
+
/** 科目编码 */
|
|
96
|
+
k8kmKmbm: string = "";
|
|
97
|
+
/** 科目名称 */
|
|
98
|
+
k8kmKmmc: string = "";
|
|
99
|
+
/** 科目类别 */
|
|
100
|
+
k0kmText: string = "";
|
|
101
|
+
deptText: string = "";
|
|
102
|
+
parentCd: string = "";
|
|
103
|
+
/** 表单形式 */
|
|
104
|
+
formType: string = "";
|
|
105
|
+
basisTxt: string = "";
|
|
106
|
+
/** 是否返程 */
|
|
107
|
+
inReturn: number = 0;
|
|
108
|
+
/** 备注信息 */
|
|
109
|
+
k8kmMemo: string = "";
|
|
110
|
+
/** 参数约定 */
|
|
111
|
+
k8kmPara: string = "";
|
|
112
|
+
/** 推算脚本 */
|
|
113
|
+
jsScript: string = "";
|
|
114
|
+
k8kmCtrl: number = 0;
|
|
115
|
+
/** 是否采购 */
|
|
116
|
+
usesYzcg: number = 0;
|
|
117
|
+
zjlySize: number = 0;
|
|
118
|
+
zjlyText: string = "";
|
|
119
|
+
zbhdText: string = "";
|
|
120
|
+
/** 是否合同 */
|
|
121
|
+
usesYzht: number = 0;
|
|
122
|
+
zjlyFrom: number = 0;
|
|
123
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/*
|
|
2
|
+
报销要素
|
|
3
|
+
/gams/ttype/
|
|
4
|
+
*/
|
|
5
|
+
export interface IGamsTypeResponse {
|
|
6
|
+
whoBuild: number;
|
|
7
|
+
userIndx: number;
|
|
8
|
+
sourceND: number;
|
|
9
|
+
sourceID: number;
|
|
10
|
+
typeIndx: number;
|
|
11
|
+
typeMain: number;
|
|
12
|
+
|
|
13
|
+
parentID: number;
|
|
14
|
+
hashCode: number;
|
|
15
|
+
dataLevl: number;
|
|
16
|
+
dataFrom: number;
|
|
17
|
+
kjndKJQJ: number;
|
|
18
|
+
dataStat: number;
|
|
19
|
+
dataOrdr: number;
|
|
20
|
+
dataDate: number;
|
|
21
|
+
dataTime: number;
|
|
22
|
+
dataHide: number;
|
|
23
|
+
dataGUID: string;
|
|
24
|
+
mastName: string;
|
|
25
|
+
mastGUID: string;
|
|
26
|
+
createBy: string;
|
|
27
|
+
createAt: number;
|
|
28
|
+
updateBy: string;
|
|
29
|
+
updateAt: number;
|
|
30
|
+
deleteBy: string;
|
|
31
|
+
deleteAt: number;
|
|
32
|
+
queuesBy: number;
|
|
33
|
+
entityID: string;
|
|
34
|
+
typeCode: string;
|
|
35
|
+
typeName: string;
|
|
36
|
+
codeRule: string;
|
|
37
|
+
unionTxt: string;
|
|
38
|
+
compatBM: string;
|
|
39
|
+
compatMC: string;
|
|
40
|
+
typeSzlx: number;
|
|
41
|
+
typeMemo: string;
|
|
42
|
+
itemCome: number;
|
|
43
|
+
fromType: number;
|
|
44
|
+
formType: string;
|
|
45
|
+
multiVal: number;
|
|
46
|
+
cDefault: string;
|
|
47
|
+
nDefault: string;
|
|
48
|
+
uDefault: string;
|
|
49
|
+
colWidth: number;
|
|
50
|
+
typePara: string;
|
|
51
|
+
whatEver: number;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export class TGamsTypeResponse implements IGamsTypeResponse {
|
|
55
|
+
whoBuild: number = 0;
|
|
56
|
+
userIndx: number = 0;
|
|
57
|
+
sourceND: number = 0;
|
|
58
|
+
sourceID: number = 0;
|
|
59
|
+
|
|
60
|
+
typeIndx: number = 0;
|
|
61
|
+
typeMain: number = 0;
|
|
62
|
+
|
|
63
|
+
parentID: number = 0;
|
|
64
|
+
hashCode: number = 0;
|
|
65
|
+
dataLevl: number = 0;
|
|
66
|
+
dataFrom: number = 0;
|
|
67
|
+
kjndKJQJ: number = 0;
|
|
68
|
+
dataStat: number = 0;
|
|
69
|
+
dataOrdr: number = 0;
|
|
70
|
+
dataDate: number = 0;
|
|
71
|
+
dataTime: number = 0;
|
|
72
|
+
dataHide: number = 0;
|
|
73
|
+
dataGUID: string = "";
|
|
74
|
+
mastName: string = "";
|
|
75
|
+
mastGUID: string = "";
|
|
76
|
+
createBy: string = "";
|
|
77
|
+
createAt: number = 0;
|
|
78
|
+
updateBy: string = "";
|
|
79
|
+
updateAt: number = 0;
|
|
80
|
+
deleteBy: string = "";
|
|
81
|
+
deleteAt: number = 0;
|
|
82
|
+
queuesBy: number = 0;
|
|
83
|
+
entityID: string = "";
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
typeCode: string = "";
|
|
87
|
+
/** 要素名称 */
|
|
88
|
+
typeName: string = "";
|
|
89
|
+
/** 编码规则 */
|
|
90
|
+
codeRule: string = "";
|
|
91
|
+
|
|
92
|
+
unionTxt: string = "";
|
|
93
|
+
/** 兼容编码 */
|
|
94
|
+
compatBM: string = "";
|
|
95
|
+
/** 兼容名称 */
|
|
96
|
+
compatMC: string = "";
|
|
97
|
+
typeSzlx: number = 0;
|
|
98
|
+
/** 要素备注 */
|
|
99
|
+
typeMemo: string = "";
|
|
100
|
+
itemCome: number = 0;
|
|
101
|
+
fromType: number = 0;
|
|
102
|
+
/** 表单形式 */
|
|
103
|
+
formType: string = "";
|
|
104
|
+
multiVal: number = 0;
|
|
105
|
+
cDefault: string = "";
|
|
106
|
+
nDefault: string = "";
|
|
107
|
+
uDefault: string = "";
|
|
108
|
+
colWidth: number = 0;
|
|
109
|
+
/** 参数约定 */
|
|
110
|
+
typePara: string = "";
|
|
111
|
+
/** 允许任意匹配 */
|
|
112
|
+
whatEver: number = 0;
|
|
113
|
+
}
|
package/src/gams/index.ts
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { IGamsCnfgResponse, TGamsCnfgResponse } from "./IGamsCnfgResponse";
|
|
2
2
|
import { IGamsBillResponse, TGamsBillResponse } from "./IGamsBillResponse";
|
|
3
3
|
import { IGamsEachResponse, TGamsEachResponse } from "./IGamsEachResponse";
|
|
4
|
-
import { IZbhdMainResponese, TZbhdMainResponese } from "./IZbhdMainResponese";
|
|
5
4
|
import { IGamsMainResponse, TGamsMainResponse } from "./IGamsMainResponse";
|
|
5
|
+
import { IGamsTypeResponse, TGamsTypeResponse } from "./IGamsTypeResponse";
|
|
6
|
+
import { IGamsItemResponse, TGamsItemResponse } from "./IGamsItemResponse";
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
type IGamsBillResponse,
|
|
9
10
|
type IGamsCnfgResponse,
|
|
10
11
|
type IGamsEachResponse,
|
|
11
12
|
type IGamsMainResponse,
|
|
12
|
-
type
|
|
13
|
+
type IGamsTypeResponse,
|
|
14
|
+
type IGamsItemResponse,
|
|
13
15
|
TGamsBillResponse,
|
|
14
16
|
TGamsCnfgResponse,
|
|
15
17
|
TGamsEachResponse,
|
|
16
18
|
TGamsMainResponse,
|
|
17
|
-
|
|
19
|
+
TGamsTypeResponse,
|
|
20
|
+
TGamsItemResponse
|
|
18
21
|
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export interface ILoadZydwResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
zydwIndx: number;
|
|
5
|
+
loadMain: number;
|
|
6
|
+
|
|
7
|
+
dataStat: number;
|
|
8
|
+
dataHide: number;
|
|
9
|
+
dataOrdr: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
dataType: number;
|
|
12
|
+
dataDate: number;
|
|
13
|
+
dataTime: number;
|
|
14
|
+
mastName: string;
|
|
15
|
+
mastGUID: string;
|
|
16
|
+
createBy: string;
|
|
17
|
+
createAt: number;
|
|
18
|
+
updateBy: string;
|
|
19
|
+
updateAt: number;
|
|
20
|
+
deleteBy: string;
|
|
21
|
+
deleteAt: number;
|
|
22
|
+
zydwUUID: string;
|
|
23
|
+
zydwText: string;
|
|
24
|
+
zydwMast: string;
|
|
25
|
+
mobileID: string;
|
|
26
|
+
zydwZone: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class TLoadZydwResponse implements ILoadZydwResponse {
|
|
30
|
+
whoBuild: number = 0;
|
|
31
|
+
userIndx: number = 0;
|
|
32
|
+
zydwIndx: number = 0;
|
|
33
|
+
loadMain: number = 0;
|
|
34
|
+
|
|
35
|
+
dataStat: number = 0;
|
|
36
|
+
dataHide: number = 0;
|
|
37
|
+
dataOrdr: number = 0;
|
|
38
|
+
dataFrom: number = 0;
|
|
39
|
+
dataType: number = 0;
|
|
40
|
+
dataDate: number = 0;
|
|
41
|
+
dataTime: number = 0;
|
|
42
|
+
mastName: string = "";
|
|
43
|
+
mastGUID: string = "";
|
|
44
|
+
createBy: string = "";
|
|
45
|
+
createAt: number = 0;
|
|
46
|
+
updateBy: string = "";
|
|
47
|
+
updateAt: number = 0;
|
|
48
|
+
deleteBy: string = "";
|
|
49
|
+
deleteAt: number = 0;
|
|
50
|
+
/** 正元单位.标识 */
|
|
51
|
+
zydwUUID: string = "";
|
|
52
|
+
/** 正元单位.名称 */
|
|
53
|
+
zydwText: string = "";
|
|
54
|
+
zydwMast: string = "";
|
|
55
|
+
mobileID: string = "";
|
|
56
|
+
zydwZone: string = "";
|
|
57
|
+
}
|
package/src/load/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IYqdwResponse, TYqdwResponse } from "./IYqdwResponse";
|
|
2
2
|
import { IYqkbResponse, TYqkbResponse } from "./IYqkbResponse";
|
|
3
3
|
import { IYqkmResponse, TYqkmResponse } from "./IYqkmResponse";
|
|
4
|
+
import { ILoadZydwResponse, TLoadZydwResponse } from "./ILoadZydwResponse";
|
|
4
5
|
|
|
5
|
-
export { type IYqdwResponse, type IYqkbResponse, type IYqkmResponse, TYqdwResponse, TYqkbResponse, TYqkmResponse };
|
|
6
|
+
export { type IYqdwResponse, type IYqkbResponse, type IYqkmResponse, type ILoadZydwResponse, TYqdwResponse, TYqkbResponse, TYqkmResponse, TLoadZydwResponse };
|
|
@@ -173,7 +173,7 @@ export interface INotiMainResponse {
|
|
|
173
173
|
/**
|
|
174
174
|
* 保密期限
|
|
175
175
|
*/
|
|
176
|
-
secretAt:
|
|
176
|
+
secretAt: number;
|
|
177
177
|
/**
|
|
178
178
|
* 紧急程度
|
|
179
179
|
*/
|
|
@@ -194,6 +194,10 @@ export interface INotiMainResponse {
|
|
|
194
194
|
* 办理提醒
|
|
195
195
|
*/
|
|
196
196
|
usesNoti: string;
|
|
197
|
+
/**
|
|
198
|
+
* 申请科室
|
|
199
|
+
*/
|
|
200
|
+
deptName: string;
|
|
197
201
|
}
|
|
198
202
|
|
|
199
203
|
export class TNotiMainResponse implements INotiMainResponse {
|
|
@@ -325,12 +329,13 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
325
329
|
zdField3: number = 0;
|
|
326
330
|
zdField4: number = 0;
|
|
327
331
|
secretID: string = "";
|
|
328
|
-
secretAt:
|
|
332
|
+
secretAt: number = 0;
|
|
329
333
|
urgentID: number = 0;
|
|
330
334
|
deadLock: number = 0;
|
|
331
335
|
fileDate: number = 0;
|
|
332
336
|
usePaper: string = "";
|
|
333
337
|
usesNoti: string = "";
|
|
338
|
+
deptName: string = "";
|
|
334
339
|
|
|
335
340
|
constructor(card: any = {}) {
|
|
336
341
|
if (card) {
|
|
@@ -131,7 +131,7 @@ export interface IYzcgMainResponse {
|
|
|
131
131
|
listPath: IPathResponse[];
|
|
132
132
|
listSQBM: IDeptResponse[];
|
|
133
133
|
listSQYH: IUserResponse[] | IUserLiteResponse[];
|
|
134
|
-
|
|
134
|
+
yzcgBill: TYzcgBillResponse[];
|
|
135
135
|
listZBHD: IZbhdMainResponese[];
|
|
136
136
|
listYzcb: IYzcbMainResponse[];
|
|
137
137
|
listGams: IGamsBillResponse[];
|
|
@@ -259,7 +259,7 @@ export class TYzcgMainResponse implements IYzcgMainResponse {
|
|
|
259
259
|
listPath: IPathResponse[] = [];
|
|
260
260
|
listSQBM: IDeptResponse[] = [];
|
|
261
261
|
listSQYH: IUserResponse[] | IUserLiteResponse[] = [];
|
|
262
|
-
|
|
262
|
+
yzcgBill: IYzcgBillResponse[] = [];
|
|
263
263
|
listZBHD: IZbhdMainResponese[] = [];
|
|
264
264
|
listYzcb: IYzcbMainResponse[] = [];
|
|
265
265
|
listGams: IGamsBillResponse[] = [];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface IZbhdMainResponse {
|
|
2
2
|
whoBuild: number;
|
|
3
3
|
userIndx: number;
|
|
4
4
|
zbhdHdid: number;
|
|
@@ -81,7 +81,7 @@ export interface IZbhdMainResponese {
|
|
|
81
81
|
zbhdCtrl: number; //#{1:警告; 别的都是:严格}
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
export class
|
|
84
|
+
export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
85
85
|
whoBuild: number = 0;
|
|
86
86
|
userIndx: number = 0;
|
|
87
87
|
zbhdHdid: number = 0;
|
package/src/zbhd/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IZbhdMainResponse, TZbhdMainResponse } from "./IZbhdMainResponese";
|
|
2
2
|
|
|
3
|
-
export { type
|
|
3
|
+
export { type IZbhdMainResponse, TZbhdMainResponse };
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
export interface IZbhdMainResponese {
|
|
2
|
-
whoBuild: number;
|
|
3
|
-
userIndx: number;
|
|
4
|
-
zbhdHdid: number;
|
|
5
|
-
zbhdHdkm: number;
|
|
6
|
-
parentID: number;
|
|
7
|
-
hashCode: number;
|
|
8
|
-
dataLevl: number;
|
|
9
|
-
dataFrom: number;
|
|
10
|
-
kjndKJQJ: number;
|
|
11
|
-
dataStat: number;
|
|
12
|
-
dataOrdr: number;
|
|
13
|
-
dataDate: number;
|
|
14
|
-
dataTime: number;
|
|
15
|
-
dataHide: number;
|
|
16
|
-
dataGUID: string;
|
|
17
|
-
mastName: string;
|
|
18
|
-
mastGUID: string;
|
|
19
|
-
createBy: string;
|
|
20
|
-
createAt: number;
|
|
21
|
-
updateBy: string;
|
|
22
|
-
updateAt: number;
|
|
23
|
-
deleteBy: string;
|
|
24
|
-
deleteAt: number;
|
|
25
|
-
queuesBy: number;
|
|
26
|
-
entityID: string;
|
|
27
|
-
zbhdKmmc: string;
|
|
28
|
-
sourceDw: string;
|
|
29
|
-
sourceBm: string;
|
|
30
|
-
unitMain: number;
|
|
31
|
-
deptMain: number;
|
|
32
|
-
sourceND: number;
|
|
33
|
-
getMoney: number;
|
|
34
|
-
incMoney: number;
|
|
35
|
-
allMoney: number;
|
|
36
|
-
unFormal: number;
|
|
37
|
-
onFormal: number;
|
|
38
|
-
outMoney: number;
|
|
39
|
-
nowMoney: number;
|
|
40
|
-
asNormal: number;
|
|
41
|
-
unitText: string;
|
|
42
|
-
deptText: string;
|
|
43
|
-
|
|
44
|
-
aplMoney: number;
|
|
45
|
-
finalOut: number;
|
|
46
|
-
afterApl: number;
|
|
47
|
-
|
|
48
|
-
bczc: string;
|
|
49
|
-
ysxm: string;
|
|
50
|
-
|
|
51
|
-
hideZbhd: number;
|
|
52
|
-
asParent: number;
|
|
53
|
-
originXM: string;
|
|
54
|
-
fullName: string;
|
|
55
|
-
|
|
56
|
-
ysbmMain: number; //#使用部门.一级部门.部门标识
|
|
57
|
-
ysbmName: string; //#使用部门.一级部门.部门名称
|
|
58
|
-
|
|
59
|
-
//#指标要素
|
|
60
|
-
gnkmCode: string;
|
|
61
|
-
gnkmName: string; //#功能科目
|
|
62
|
-
ysxmCode: string;
|
|
63
|
-
ysxmName: string; //#预算项目
|
|
64
|
-
zjxzCode: string;
|
|
65
|
-
zjxzName: string; //#资金性质
|
|
66
|
-
bmkmCode: string;
|
|
67
|
-
bmkmName: string; //#部门经济
|
|
68
|
-
zfkmCode: string;
|
|
69
|
-
zfkmName: string; //#政府经济
|
|
70
|
-
xmmxName: string; //#项目明细
|
|
71
|
-
zblyName: string; //#指标来源
|
|
72
|
-
cgpmName: string; //#采购品目
|
|
73
|
-
ywcsName: string; //#业务处室
|
|
74
|
-
zdzjName: string; //#直达资金
|
|
75
|
-
ysjcName: string; //#预算级次
|
|
76
|
-
xmflCode: string;
|
|
77
|
-
xmflName: string; //#项目分类
|
|
78
|
-
xmlxName: string; //#项目类型
|
|
79
|
-
zxzjName: string; //#专项资金
|
|
80
|
-
zjlyName: string; //#资金来源
|
|
81
|
-
zbhdCtrl: number; //#{1:警告; 别的都是:严格}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
export class TZbhdMainResponese implements IZbhdMainResponese {
|
|
85
|
-
whoBuild: number = 0;
|
|
86
|
-
userIndx: number = 0;
|
|
87
|
-
zbhdHdid: number = 0;
|
|
88
|
-
zbhdHdkm: number = 0;
|
|
89
|
-
parentID: number = 0;
|
|
90
|
-
hashCode: number = 0;
|
|
91
|
-
dataLevl: number = 0;
|
|
92
|
-
dataFrom: number = 0;
|
|
93
|
-
kjndKJQJ: number = 0;
|
|
94
|
-
dataStat: number = 0;
|
|
95
|
-
dataOrdr: number = 0;
|
|
96
|
-
dataDate: number = 0;
|
|
97
|
-
dataTime: number = 0;
|
|
98
|
-
dataHide: number = 0;
|
|
99
|
-
dataGUID: string = "";
|
|
100
|
-
mastName: string = "";
|
|
101
|
-
mastGUID: string = "";
|
|
102
|
-
createBy: string = "";
|
|
103
|
-
createAt: number = 0;
|
|
104
|
-
updateBy: string = "";
|
|
105
|
-
updateAt: number = 0;
|
|
106
|
-
deleteBy: string = "";
|
|
107
|
-
deleteAt: number = 0;
|
|
108
|
-
queuesBy: number = 0;
|
|
109
|
-
entityID: string = "";
|
|
110
|
-
zbhdKmmc: string = "";
|
|
111
|
-
sourceDw: string = "";
|
|
112
|
-
sourceBm: string = "";
|
|
113
|
-
unitMain: number = 0;
|
|
114
|
-
deptMain: number = 0;
|
|
115
|
-
sourceND: number = 0;
|
|
116
|
-
getMoney: number = 0;
|
|
117
|
-
incMoney: number = 0;
|
|
118
|
-
allMoney: number = 0;
|
|
119
|
-
unFormal: number = 0;
|
|
120
|
-
onFormal: number = 0;
|
|
121
|
-
outMoney: number = 0;
|
|
122
|
-
nowMoney: number = 0;
|
|
123
|
-
|
|
124
|
-
asNormal: number = 0;
|
|
125
|
-
unitText: string = "";
|
|
126
|
-
deptText: string = "";
|
|
127
|
-
|
|
128
|
-
aplMoney: number = 0; //#申请金额
|
|
129
|
-
finalOut: number = 0; //#核定金额
|
|
130
|
-
afterApl: number = 0;
|
|
131
|
-
|
|
132
|
-
bczc: string = "";
|
|
133
|
-
ysxm: string = "";
|
|
134
|
-
|
|
135
|
-
hideZbhd: number = 1;
|
|
136
|
-
asParent: number = 0;
|
|
137
|
-
originXM: string = "";
|
|
138
|
-
fullName: string = "";
|
|
139
|
-
|
|
140
|
-
ysbmMain: number = 0;
|
|
141
|
-
ysbmName: string = "";
|
|
142
|
-
|
|
143
|
-
//#指标要素
|
|
144
|
-
gnkmCode: string = ""; //#功能科目编码
|
|
145
|
-
gnkmName: string = ""; //#功能科目
|
|
146
|
-
ysxmCode: string = ""; //#预算项目.编码
|
|
147
|
-
ysxmName: string = ""; //#预算项目
|
|
148
|
-
zjxzCode: string = "";
|
|
149
|
-
zjxzName: string = ""; //#资金性质
|
|
150
|
-
bmkmCode: string = "";
|
|
151
|
-
bmkmName: string = ""; //#部门经济
|
|
152
|
-
zfkmCode: string = "";
|
|
153
|
-
zfkmName: string = ""; //#政府经济
|
|
154
|
-
xmmxName: string = ""; //#项目明细
|
|
155
|
-
zblyName: string = ""; //#指标来源
|
|
156
|
-
cgpmName: string = ""; //#采购品目
|
|
157
|
-
ywcsName: string = ""; //#业务处室
|
|
158
|
-
zdzjName: string = ""; //#直达资金
|
|
159
|
-
ysjcName: string = ""; //#预算级次
|
|
160
|
-
xmflCode: string = "";
|
|
161
|
-
xmflName: string = ""; //#项目分类
|
|
162
|
-
xmlxName: string = ""; //#项目类型
|
|
163
|
-
zxzjName: string = ""; //#专项资金
|
|
164
|
-
zjlyName: string = ""; //#资金来源
|
|
165
|
-
zbhdCtrl: number = 2; //1警告 2严格
|
|
166
|
-
}
|