@ningboyz/types 1.7.109 → 1.7.111
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/card/ISyszclbgblbResponse.ts~ +67 -0
- package/src/card/IZclbgblbResponse.ts~ +68 -0
- package/src/const/const_wtui_item_type.ts~ +20 -0
- package/src/core/IDeptResponse.ts +5 -1
- package/src/core/IUnitResponse.ts +5 -1
- package/src/note/INoteMainResponse.ts +119 -0
- package/src/note/index.ts +3 -0
package/package.json
CHANGED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
3
|
+
export interface ISyszclbgblbResponse {
|
|
4
|
+
whoBuild: number
|
|
5
|
+
userIndx: number
|
|
6
|
+
zclbIndx: number
|
|
7
|
+
dataStat: number
|
|
8
|
+
dataHide: number
|
|
9
|
+
dataOrdr: number
|
|
10
|
+
dataFrom: 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
|
+
queuesBy: number
|
|
20
|
+
fromWhoBuild: number
|
|
21
|
+
fromUserIndx: number
|
|
22
|
+
fromGblbIndx: number
|
|
23
|
+
sourceND: number
|
|
24
|
+
fromSourceND: number
|
|
25
|
+
|
|
26
|
+
zclbTypeText: string
|
|
27
|
+
zclbCode: string
|
|
28
|
+
zclbName: string
|
|
29
|
+
gblbCode: string
|
|
30
|
+
gblbName: string
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export class TSyszclbgblbResponse implements ISyszclbgblbResponse {
|
|
34
|
+
whoBuild: number = 0
|
|
35
|
+
userIndx: number = 0
|
|
36
|
+
zclbIndx: number = 0
|
|
37
|
+
dataStat: number = 0
|
|
38
|
+
dataHide: number = 0
|
|
39
|
+
dataOrdr: number = 0
|
|
40
|
+
dataFrom: number = 0
|
|
41
|
+
dataDate: number = 0
|
|
42
|
+
dataTime: number = 0
|
|
43
|
+
createBy: string = ""
|
|
44
|
+
createAt: number = 0
|
|
45
|
+
updateBy: string = ""
|
|
46
|
+
updateAt: number = 0
|
|
47
|
+
deleteBy: string = ""
|
|
48
|
+
deleteAt: number = 0
|
|
49
|
+
queuesBy: number = 0
|
|
50
|
+
fromWhoBuild: number = 0
|
|
51
|
+
fromUserIndx: number = 0
|
|
52
|
+
fromGblbIndx: number = 0
|
|
53
|
+
sourceND: number = 0
|
|
54
|
+
fromSourceND: number = 0
|
|
55
|
+
|
|
56
|
+
zclbTypeText: string = ""
|
|
57
|
+
zclbCode: string = ""
|
|
58
|
+
zclbName: string = ""
|
|
59
|
+
gblbCode: string = ""
|
|
60
|
+
gblbName: string = ""
|
|
61
|
+
|
|
62
|
+
constructor(data: any = {}) {
|
|
63
|
+
if (data) {
|
|
64
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
3
|
+
export interface ISyszclbgblb{
|
|
4
|
+
whoBuild : number
|
|
5
|
+
userIndx : number
|
|
6
|
+
zclbIndx : number
|
|
7
|
+
dataStat : number
|
|
8
|
+
dataHide : number
|
|
9
|
+
dataOrdr : number
|
|
10
|
+
dataFrom : 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
|
+
queuesBy : number
|
|
20
|
+
fromWhoBuild: number
|
|
21
|
+
fromUserIndx: number
|
|
22
|
+
fromGblbIndx: number
|
|
23
|
+
sourceND : number
|
|
24
|
+
fromSourceND: number
|
|
25
|
+
|
|
26
|
+
zclbTypeText : string
|
|
27
|
+
zclbCode: string
|
|
28
|
+
zclbName: string
|
|
29
|
+
gblbCode: string
|
|
30
|
+
gblbName: string
|
|
31
|
+
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class TSyszclbgblb implements ISyszclbgblb{
|
|
35
|
+
whoBuild : number = 0
|
|
36
|
+
userIndx : number = 0
|
|
37
|
+
zclbIndx : number = 0
|
|
38
|
+
dataStat : number = 0
|
|
39
|
+
dataHide : number = 0
|
|
40
|
+
dataOrdr : number = 0
|
|
41
|
+
dataFrom : number = 0
|
|
42
|
+
dataDate : number = 0
|
|
43
|
+
dataTime : number = 0
|
|
44
|
+
createBy : string =''
|
|
45
|
+
createAt : number = 0
|
|
46
|
+
updateBy : string =''
|
|
47
|
+
updateAt : number = 0
|
|
48
|
+
deleteBy : string =''
|
|
49
|
+
deleteAt : number = 0
|
|
50
|
+
queuesBy : number = 0
|
|
51
|
+
fromWhoBuild: number = 0
|
|
52
|
+
fromUserIndx: number = 0
|
|
53
|
+
fromGblbIndx: number = 0
|
|
54
|
+
sourceND : number = 0
|
|
55
|
+
fromSourceND: number = 0
|
|
56
|
+
|
|
57
|
+
zclbTypeText : string =""
|
|
58
|
+
zclbCode: string =""
|
|
59
|
+
zclbName: string =""
|
|
60
|
+
gblbCode: string =""
|
|
61
|
+
gblbName: string =""
|
|
62
|
+
|
|
63
|
+
constructor(data: Partial<ISYSZCLBGBLB> = {}) {
|
|
64
|
+
if (data) {
|
|
65
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const CONST_ITEM_TYPE_TO_数值 = 0; // #数值
|
|
2
|
+
export const CONST_ITEM_TYPE_TO_文本 = 1; // #文本
|
|
3
|
+
export const CONST_ITEM_TYPE_TO_文本域 = 2; // #备注
|
|
4
|
+
export const CONST_ITEM_TYPE_TO_日期 = 3; // #日期
|
|
5
|
+
export const CONST_ITEM_TYPE_TO_字典 = 4; // #字典
|
|
6
|
+
|
|
7
|
+
export const CONST_VALIDATE_TO_手机号码 = 0; // #整数
|
|
8
|
+
export const CONST_VALIDATE_TO_邮箱 = 1; // #文本
|
|
9
|
+
export const CONST_VALIDATE_TO_身份证 = 2; // #备注
|
|
10
|
+
export const CONST_VALIDATE_TO_自定义 = 3;
|
|
11
|
+
|
|
12
|
+
export const CONST_CLEARABLE_TO_不清空 = 0; //不清空
|
|
13
|
+
export const CONST_CLEARABLE_TO_清空 = 1; //清空
|
|
14
|
+
export const CONST_CLEARABLE_TO_询问 = 2; //询问
|
|
15
|
+
|
|
16
|
+
export const CONST_OPERATOR_TO_大于 = 0; //大于
|
|
17
|
+
export const CONST_OPERATOR_TO_等于 = 1; //等于
|
|
18
|
+
export const CONST_OPERATOR_TO_小于 = 2; //小于
|
|
19
|
+
export const CONST_OPERATOR_TO_大于等于 = 3; //大于等于
|
|
20
|
+
export const CONST_OPERATOR_TO_小于等于 = 4; //小于等于
|
|
@@ -69,6 +69,9 @@ export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
|
69
69
|
gnkmCode: string;
|
|
70
70
|
/** 功能科目name */
|
|
71
71
|
gnkmName: string;
|
|
72
|
+
|
|
73
|
+
/**人数 */
|
|
74
|
+
userSize:number;
|
|
72
75
|
|
|
73
76
|
/**
|
|
74
77
|
* 参数约定
|
|
@@ -129,7 +132,8 @@ export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDept
|
|
|
129
132
|
matchVal: string = "";
|
|
130
133
|
dataMemo: string = "";
|
|
131
134
|
queuesBy: number = 0;
|
|
132
|
-
|
|
135
|
+
/**人数 */
|
|
136
|
+
userSize:number = 0;
|
|
133
137
|
/** 科室类型:0:主办科室;1:协办科室 */
|
|
134
138
|
deptType: number = -1;
|
|
135
139
|
ratioVal: number = 0;
|
|
@@ -52,6 +52,8 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
52
52
|
mastGUID: string;
|
|
53
53
|
mastName: string;
|
|
54
54
|
billCode: string;
|
|
55
|
+
/**人数 */
|
|
56
|
+
userSize:number;
|
|
55
57
|
/** 单位全称链 */
|
|
56
58
|
nameFull: string;
|
|
57
59
|
/** 单位简称 */
|
|
@@ -179,6 +181,7 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
179
181
|
unitCall: string = "";
|
|
180
182
|
unitCode: string = "";
|
|
181
183
|
unitIndx: number = 0;
|
|
184
|
+
|
|
182
185
|
unitMast: string = "";
|
|
183
186
|
unitMemo: string = "";
|
|
184
187
|
unitNamf: string = "";
|
|
@@ -201,7 +204,8 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
201
204
|
usciCode: string = "";
|
|
202
205
|
belongToText: string = "";
|
|
203
206
|
belongToUsci: string = "";
|
|
204
|
-
|
|
207
|
+
/**人数 */
|
|
208
|
+
userSize:number = 0;
|
|
205
209
|
usesZczj: number = 0;
|
|
206
210
|
usesKJQJ: number = 0;
|
|
207
211
|
realKJQJ: number = 0;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
export interface INoteMainResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
noteIndx: number;
|
|
5
|
+
parentID: number;
|
|
6
|
+
hashCode: number;
|
|
7
|
+
dataLevl: number;
|
|
8
|
+
dataStat: number;
|
|
9
|
+
dataOrdr: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
dataHide: number;
|
|
13
|
+
dataFrom: number;
|
|
14
|
+
kjndKJQJ: number;
|
|
15
|
+
dataGUID: string;
|
|
16
|
+
mastName: string;
|
|
17
|
+
mastGUID: string;
|
|
18
|
+
createBy: string;
|
|
19
|
+
createAt: number;
|
|
20
|
+
updateBy: string;
|
|
21
|
+
updateAt: number;
|
|
22
|
+
deleteBy: string;
|
|
23
|
+
deleteAt: number;
|
|
24
|
+
queuesBy: number;
|
|
25
|
+
entityID: string;
|
|
26
|
+
sourceND: number;
|
|
27
|
+
menuMain: number;
|
|
28
|
+
menuUUID: string;
|
|
29
|
+
unitMain: number;
|
|
30
|
+
deptMain: number;
|
|
31
|
+
sqyhText: string;
|
|
32
|
+
sqbmText: string;
|
|
33
|
+
flowUndo: number;
|
|
34
|
+
flowText: string;
|
|
35
|
+
startDay: number;
|
|
36
|
+
endedDay: number;
|
|
37
|
+
noteStat: number;
|
|
38
|
+
noteCode: string;
|
|
39
|
+
noteType: number;
|
|
40
|
+
noteDate: number;
|
|
41
|
+
noteMark: string;
|
|
42
|
+
noteUses: string;
|
|
43
|
+
noteMemo: string;
|
|
44
|
+
usesNoti: number;
|
|
45
|
+
billMain: number;
|
|
46
|
+
detailID: number;
|
|
47
|
+
yesIknow: number;
|
|
48
|
+
noteName: string;
|
|
49
|
+
typeName: string;
|
|
50
|
+
doneStat: number;
|
|
51
|
+
yzhtHtbh: string;
|
|
52
|
+
yzhtName: string;
|
|
53
|
+
billZfqh: string;
|
|
54
|
+
billZfbl: number;
|
|
55
|
+
outMoney: number;
|
|
56
|
+
yzhtXmmc: string;
|
|
57
|
+
jfdwText: string;
|
|
58
|
+
yfdwText: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export class TNoteMainResponse implements INoteMainResponse {
|
|
62
|
+
whoBuild: number = 0;
|
|
63
|
+
userIndx: number = 0;
|
|
64
|
+
noteIndx: number = 0;
|
|
65
|
+
parentID: number = 0;
|
|
66
|
+
hashCode: number = 0;
|
|
67
|
+
dataLevl: number = 0;
|
|
68
|
+
dataStat: number = 1;
|
|
69
|
+
dataOrdr: number = 0;
|
|
70
|
+
dataDate: number = 0;
|
|
71
|
+
dataTime: number = 0;
|
|
72
|
+
dataHide: number = 0;
|
|
73
|
+
dataFrom: number = 0;
|
|
74
|
+
kjndKJQJ: number = 0;
|
|
75
|
+
dataGUID: string = "";
|
|
76
|
+
mastName: string = "";
|
|
77
|
+
mastGUID: string = "";
|
|
78
|
+
createBy: string = "";
|
|
79
|
+
createAt: number = 0;
|
|
80
|
+
updateBy: string = "";
|
|
81
|
+
updateAt: number = 0;
|
|
82
|
+
deleteBy: string = "";
|
|
83
|
+
deleteAt: number = 0;
|
|
84
|
+
queuesBy: number = 0;
|
|
85
|
+
entityID: string = "";
|
|
86
|
+
sourceND: number = 0;
|
|
87
|
+
menuMain: number = 0;
|
|
88
|
+
menuUUID: string = "";
|
|
89
|
+
unitMain: number = 0;
|
|
90
|
+
deptMain: number = 0;
|
|
91
|
+
sqyhText: string = "";
|
|
92
|
+
sqbmText: string = "";
|
|
93
|
+
flowUndo: number = 0;
|
|
94
|
+
flowText: string = "";
|
|
95
|
+
startDay: number = 0;
|
|
96
|
+
endedDay: number = 0;
|
|
97
|
+
noteStat: number = 0;
|
|
98
|
+
noteCode: string = "";
|
|
99
|
+
noteType: number = 0;
|
|
100
|
+
noteDate: number = 0;
|
|
101
|
+
noteMark: string = "";
|
|
102
|
+
noteUses: string = "";
|
|
103
|
+
noteMemo: string = "";
|
|
104
|
+
usesNoti: number = 0;
|
|
105
|
+
billMain: number = 0;
|
|
106
|
+
detailID: number = 0;
|
|
107
|
+
yesIknow: number = 0;
|
|
108
|
+
noteName: string = "";
|
|
109
|
+
typeName: string = "";
|
|
110
|
+
doneStat: number = 0;
|
|
111
|
+
yzhtHtbh: string = "";
|
|
112
|
+
yzhtName: string = "";
|
|
113
|
+
billZfqh: string = "";
|
|
114
|
+
billZfbl: number = 0;
|
|
115
|
+
outMoney: number = 0;
|
|
116
|
+
yzhtXmmc: string = "";
|
|
117
|
+
jfdwText: string = "";
|
|
118
|
+
yfdwText: string = "";
|
|
119
|
+
}
|