@ningboyz/types 1.2.188 → 1.2.190
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/bill/IBillMainResponse.ts +4 -0
- package/src/custom/IValidReponse.ts +11 -0
- package/src/custom/index.ts +4 -0
- package/src/hzcb/IHzcbNdjhResponse.ts +4 -0
- package/src/hzcb/IHzcbNodeResponse.ts +5 -0
- package/src/hzcb/IHzcbTdssResponse.ts +36 -0
- package/src/hzcb/IHzcbXmssResponse.ts +17 -0
- package/src/hznj/IHznjBillResponse.ts +12 -0
- package/src/hznj/IHznjMainResponse.ts +12 -0
- package/src/index.ts +16 -13
- package/src/vary/IVaryBillResponse.ts +61 -0
- package/src/vary/IVaryMainResponse.ts +143 -0
- package/src/vary/index.ts +4 -0
- package/src/yzht/IYzhtMainResponse.ts +1 -1
package/package.json
CHANGED
|
@@ -103,6 +103,8 @@ export interface IBillMainResponse {
|
|
|
103
103
|
/** 会计主管 */
|
|
104
104
|
finaMast: string;
|
|
105
105
|
|
|
106
|
+
yzhtLock: number;
|
|
107
|
+
|
|
106
108
|
/** 开始日期 */
|
|
107
109
|
startDay: number;
|
|
108
110
|
/** 结束日期 */
|
|
@@ -245,6 +247,8 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
245
247
|
/** 会计主管 */
|
|
246
248
|
finaMast: string = "";
|
|
247
249
|
|
|
250
|
+
yzhtLock: number = 0;
|
|
251
|
+
|
|
248
252
|
/** 开始日期 */
|
|
249
253
|
startDay: number = 0;
|
|
250
254
|
/** 结束日期 */
|
|
@@ -59,6 +59,8 @@ export interface IHzcbNdjhResponse {
|
|
|
59
59
|
hzcbName: string;
|
|
60
60
|
/**备注说明 */
|
|
61
61
|
ndjhMemo: string;
|
|
62
|
+
wContact: string; //#联系人
|
|
63
|
+
dContact: string; //#联系电话
|
|
62
64
|
|
|
63
65
|
coverURL: string;
|
|
64
66
|
touchURL: string;
|
|
@@ -128,6 +130,8 @@ export class THzcbNdjhResponse implements IHzcbNdjhResponse {
|
|
|
128
130
|
hzcbMain: number = 0;
|
|
129
131
|
hzcbName: string = "";
|
|
130
132
|
ndjhMemo: string = "";
|
|
133
|
+
wContact: string = ""; //#联系人
|
|
134
|
+
dContact: string = ""; //#联系电话
|
|
131
135
|
|
|
132
136
|
coverURL: string = "";
|
|
133
137
|
touchURL: string = "";
|
|
@@ -17,10 +17,15 @@ export interface IHzcbNodeResponse {
|
|
|
17
17
|
deleteBy: string;
|
|
18
18
|
deleteAt: number;
|
|
19
19
|
queuesBy: number;
|
|
20
|
+
/**地块编码 */
|
|
20
21
|
nodeCode: string;
|
|
22
|
+
/**地块名称 */
|
|
21
23
|
nodeName: string;
|
|
24
|
+
/**土地面积 */
|
|
22
25
|
mjValue1: number;
|
|
26
|
+
/**概况说明 */
|
|
23
27
|
nodeBlob: string;
|
|
28
|
+
/**备注信息 */
|
|
24
29
|
nodeMemo: string;
|
|
25
30
|
}
|
|
26
31
|
|
|
@@ -37,20 +37,38 @@ export interface IHzcbTdssResponse {
|
|
|
37
37
|
menuUUID: string;
|
|
38
38
|
sqbmText: string;
|
|
39
39
|
sqyhText: string;
|
|
40
|
+
/**申请日期 */
|
|
40
41
|
tdssDate: number;
|
|
42
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
41
43
|
tdssStat: number;
|
|
44
|
+
/**单据类型:检验类型 */
|
|
42
45
|
tdssType: number;
|
|
46
|
+
/**编号 */
|
|
43
47
|
tdssCode: string;
|
|
48
|
+
/**名称 */
|
|
44
49
|
tdssName: string;
|
|
50
|
+
/**申请用途 */
|
|
45
51
|
tdssUses: string;
|
|
52
|
+
/**备注说明 */
|
|
46
53
|
tdssMemo: string;
|
|
54
|
+
/**基地ID */
|
|
55
|
+
hzcbMain: number;
|
|
56
|
+
/**基地名称 */
|
|
47
57
|
hzcbName: string;
|
|
58
|
+
/**区域 */
|
|
48
59
|
nodeText: string;
|
|
60
|
+
/**申请类型 */
|
|
49
61
|
sqlxMain: number;
|
|
62
|
+
/**申请类型 */
|
|
50
63
|
sqlxText: string;
|
|
64
|
+
/**土地及设施类型 */
|
|
51
65
|
sslxMain: number;
|
|
66
|
+
/**土地及设施类型 */
|
|
52
67
|
sslxText: string;
|
|
68
|
+
/**面积 */
|
|
53
69
|
mjValue1: number;
|
|
70
|
+
wContact: string; //#联系人
|
|
71
|
+
dContact: string; //#联系电话
|
|
54
72
|
|
|
55
73
|
/**附件 */
|
|
56
74
|
listPath: TCore.IPathResponse[];
|
|
@@ -102,6 +120,7 @@ export class THzcbTdssResponse implements IHzcbTdssResponse {
|
|
|
102
120
|
tdssName: string = "";
|
|
103
121
|
tdssUses: string = "";
|
|
104
122
|
tdssMemo: string = "";
|
|
123
|
+
hzcbMain: number = 0;
|
|
105
124
|
hzcbName: string = "";
|
|
106
125
|
nodeText: string = "";
|
|
107
126
|
sqlxMain: number = 0;
|
|
@@ -109,6 +128,23 @@ export class THzcbTdssResponse implements IHzcbTdssResponse {
|
|
|
109
128
|
sslxMain: number = 0;
|
|
110
129
|
sslxText: string = "";
|
|
111
130
|
mjValue1: number = 0;
|
|
131
|
+
wContact: string = ""; //#联系人
|
|
132
|
+
dContact: string = ""; //#联系电话
|
|
133
|
+
|
|
134
|
+
coverURL: string = "";
|
|
135
|
+
touchURL: string = "";
|
|
136
|
+
unitText: string = "";
|
|
137
|
+
sourceDW: string = "";
|
|
138
|
+
|
|
139
|
+
lastDate: number = 0;
|
|
140
|
+
lastTime: number = 0;
|
|
141
|
+
flowStat: number = 0;
|
|
142
|
+
didFirst: number = 0;
|
|
143
|
+
lastMemo: string = "";
|
|
144
|
+
userName: string = "";
|
|
145
|
+
userGUID: string = "";
|
|
146
|
+
flowMain: number = 0;
|
|
147
|
+
flowNode: number = 0;
|
|
112
148
|
|
|
113
149
|
listPath: TCore.IPathResponse[] = [];
|
|
114
150
|
listFrom: THzcb.IHzcbMainResponse[] = [];
|
|
@@ -37,16 +37,30 @@ export interface IHzcbXmssResponse {
|
|
|
37
37
|
flowText: string;
|
|
38
38
|
menuMain: number;
|
|
39
39
|
menuUUID: string;
|
|
40
|
+
/**申请部门 */
|
|
40
41
|
sqbmText: string;
|
|
42
|
+
/**申请用户 */
|
|
41
43
|
sqyhText: string;
|
|
44
|
+
/**申请日期 */
|
|
42
45
|
xmssDate: number;
|
|
46
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
43
47
|
xmssStat: number;
|
|
48
|
+
/**单据类型:检验类型 */
|
|
44
49
|
xmssType: number;
|
|
50
|
+
/**编号 */
|
|
45
51
|
xmssCode: string;
|
|
52
|
+
/**名称 */
|
|
46
53
|
xmssName: string;
|
|
54
|
+
/**申请用途 */
|
|
47
55
|
xmssUses: string;
|
|
56
|
+
/**基地ID */
|
|
57
|
+
hzcbMain: number;
|
|
58
|
+
/**基地名称 */
|
|
48
59
|
hzcbName: string;
|
|
60
|
+
/**备注说明 */
|
|
49
61
|
xmssMemo: string;
|
|
62
|
+
wContact: string; //#联系人
|
|
63
|
+
dContact: string; //#联系电话
|
|
50
64
|
|
|
51
65
|
coverURL: string;
|
|
52
66
|
touchURL: string;
|
|
@@ -113,8 +127,11 @@ export class THzcbXmssResponse implements IHzcbXmssResponse {
|
|
|
113
127
|
xmssCode: string = "";
|
|
114
128
|
xmssName: string = "";
|
|
115
129
|
xmssUses: string = "";
|
|
130
|
+
hzcbMain: number = 0;
|
|
116
131
|
hzcbName: string = "";
|
|
117
132
|
xmssMemo: string = "";
|
|
133
|
+
wContact: string = ""; //#联系人
|
|
134
|
+
dContact: string = ""; //#联系电话
|
|
118
135
|
|
|
119
136
|
coverURL: string = "";
|
|
120
137
|
touchURL: string = "";
|
|
@@ -18,19 +18,31 @@ export interface IHznjBillResponse {
|
|
|
18
18
|
deleteBy: string;
|
|
19
19
|
deleteAt: number;
|
|
20
20
|
queuesBy: number;
|
|
21
|
+
/**检测项目 */
|
|
21
22
|
itemMain: number;
|
|
23
|
+
/**检测项目 */
|
|
22
24
|
itemName: string;
|
|
25
|
+
/**方法依据--检测依据 */
|
|
23
26
|
k9kmKmid: number;
|
|
27
|
+
/**方法依据--检测依据 */
|
|
24
28
|
k9kmKmmc: string;
|
|
29
|
+
/**检出/定量限 */
|
|
25
30
|
limitVal: number;
|
|
31
|
+
/**指标 */
|
|
26
32
|
levelVal: number;
|
|
33
|
+
/**单位 */
|
|
27
34
|
jldwText: string;
|
|
35
|
+
/**实测数据 */
|
|
28
36
|
actualAt: number;
|
|
37
|
+
/**实测数据 */
|
|
29
38
|
actualAtText: string;
|
|
39
|
+
/**单项判定 */
|
|
30
40
|
assessAt: number;
|
|
41
|
+
/**单项判定 */
|
|
31
42
|
assessBy: string;
|
|
32
43
|
fromWhoBuild: number;
|
|
33
44
|
fromUserIndx: number;
|
|
45
|
+
/**关联 hznj_noti_bill */
|
|
34
46
|
fromNotiBill: number;
|
|
35
47
|
}
|
|
36
48
|
|
|
@@ -40,17 +40,29 @@ export interface IHznjMainResponse {
|
|
|
40
40
|
flowUndo: number;
|
|
41
41
|
flowUser: string;
|
|
42
42
|
flowText: string;
|
|
43
|
+
/**申请日期 */
|
|
43
44
|
hznjDate: number;
|
|
45
|
+
/**流程状态:(0:制单;1:送审;2:终审) */
|
|
44
46
|
hznjStat: number;
|
|
47
|
+
/**单据类型:检验类型 */
|
|
45
48
|
hznjType: number;
|
|
49
|
+
/**单据编号 */
|
|
46
50
|
hznjCode: string;
|
|
51
|
+
/**单据名称 */
|
|
47
52
|
hznjName: string;
|
|
53
|
+
/**申请用途 */
|
|
48
54
|
hznjUses: string;
|
|
55
|
+
/**备注说明 */
|
|
49
56
|
hznjMemo: string;
|
|
57
|
+
/**检验结论 */
|
|
50
58
|
hznjText: string;
|
|
59
|
+
/**实验环境要求,默认:符合检测要求 */
|
|
51
60
|
envrText: string;
|
|
61
|
+
/**所有主要仪器(仪器编号) */
|
|
52
62
|
deviceBy: string;
|
|
63
|
+
/**判定依据 */
|
|
53
64
|
k9kmKmmc: string;
|
|
65
|
+
/**检验项目,默认:见检验结果报告书 */
|
|
54
66
|
itemText: string;
|
|
55
67
|
|
|
56
68
|
coverURL: string;
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as TAntv from "./antv";
|
|
2
2
|
import * as TApp from "./app";
|
|
3
3
|
import { IBaseResponse } from "./base/IBaseResponse";
|
|
4
|
+
import * as TBill from "./bill";
|
|
4
5
|
import * as TCard from "./card";
|
|
5
6
|
import * as TCggz from "./cggz";
|
|
6
7
|
import * as TCnfg from "./conf";
|
|
@@ -8,6 +9,8 @@ import { IAboutConfig, IBaseConfig, IConfig, IPathConfig } from "./conf/IConfig"
|
|
|
8
9
|
import * as Const from "./const";
|
|
9
10
|
import * as TCore from "./core";
|
|
10
11
|
import * as TCron from "./cron";
|
|
12
|
+
import * as TCustom from "./custom";
|
|
13
|
+
import * as Decorators from "./decorators";
|
|
11
14
|
import * as TElem from "./elem";
|
|
12
15
|
import * as Enums from "./enums";
|
|
13
16
|
import * as TExpd from "./expd";
|
|
@@ -17,6 +20,9 @@ import * as TGzjg from "./gzjg";
|
|
|
17
20
|
import * as TGztb from "./gztb";
|
|
18
21
|
import * as TGzzd from "./gzzd";
|
|
19
22
|
import * as THzcb from "./hzcb";
|
|
23
|
+
import * as THznj from "./hznj";
|
|
24
|
+
import * as THznk from "./hznk";
|
|
25
|
+
import * as TJapz from "./japz";
|
|
20
26
|
import * as TLoad from "./load";
|
|
21
27
|
import * as Micro from "./micro";
|
|
22
28
|
import * as TMyoa from "./myoa";
|
|
@@ -39,23 +45,20 @@ import * as TZbhd from "./zbhd";
|
|
|
39
45
|
import * as TZbzd from "./zbzd";
|
|
40
46
|
import * as TZfht from "./zfht";
|
|
41
47
|
import * as TZfsq from "./zfsq";
|
|
42
|
-
import * as
|
|
43
|
-
import * as TJapz from "./japz";
|
|
44
|
-
import * as TBill from "./bill";
|
|
45
|
-
import * as THznk from "./hznk";
|
|
46
|
-
import * as THznj from "./hznj";
|
|
48
|
+
import * as TVary from "./vary";
|
|
47
49
|
|
|
48
50
|
export {
|
|
49
|
-
Const,
|
|
50
|
-
Enums,
|
|
51
|
+
Const, Decorators, Enums,
|
|
51
52
|
Micro,
|
|
52
53
|
TAntv,
|
|
53
54
|
TApp,
|
|
55
|
+
TBill,
|
|
54
56
|
TCard,
|
|
55
57
|
TCggz,
|
|
56
58
|
TCnfg,
|
|
57
59
|
TCore,
|
|
58
60
|
TCron,
|
|
61
|
+
TCustom,
|
|
59
62
|
TElem,
|
|
60
63
|
TExpd,
|
|
61
64
|
TFlow,
|
|
@@ -64,6 +67,9 @@ export {
|
|
|
64
67
|
TGztb,
|
|
65
68
|
TGzzd,
|
|
66
69
|
THzcb,
|
|
70
|
+
THznj,
|
|
71
|
+
THznk,
|
|
72
|
+
TJapz,
|
|
67
73
|
TLoad,
|
|
68
74
|
TMyoa,
|
|
69
75
|
TNoti,
|
|
@@ -84,15 +90,12 @@ export {
|
|
|
84
90
|
TZbzd,
|
|
85
91
|
TZfht,
|
|
86
92
|
TZfsq,
|
|
87
|
-
|
|
88
|
-
TBill,
|
|
89
|
-
THznk,
|
|
90
|
-
THznj,
|
|
93
|
+
TVary,
|
|
91
94
|
type IAboutConfig,
|
|
92
95
|
type IBaseConfig,
|
|
93
96
|
type IBaseResponse,
|
|
94
97
|
type IConfig,
|
|
95
98
|
type IPathConfig,
|
|
96
|
-
type IResponse
|
|
97
|
-
Decorators
|
|
99
|
+
type IResponse
|
|
98
100
|
};
|
|
101
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export interface IVaryBillResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
varyIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataDate: number;
|
|
11
|
+
dataTime: number;
|
|
12
|
+
createBy: string;
|
|
13
|
+
createAt: number;
|
|
14
|
+
updateBy: string;
|
|
15
|
+
updateAt: number;
|
|
16
|
+
deleteBy: string;
|
|
17
|
+
deleteAt: number;
|
|
18
|
+
queuesBy: number;
|
|
19
|
+
old4main: number;
|
|
20
|
+
old4text: string;
|
|
21
|
+
old4blob: string;
|
|
22
|
+
new4main: number;
|
|
23
|
+
new4text: string;
|
|
24
|
+
new4blob: string;
|
|
25
|
+
colField: string;
|
|
26
|
+
billType: number;
|
|
27
|
+
billDate: number;
|
|
28
|
+
billUses: string;
|
|
29
|
+
billMemo: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class TVaryBillResponse implements IVaryBillResponse {
|
|
33
|
+
whoBuild: number = 0;
|
|
34
|
+
userIndx: number = 0;
|
|
35
|
+
varyIndx: number = 0;
|
|
36
|
+
idEntity: 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
|
+
old4main: number = 0;
|
|
51
|
+
old4text: string = "";
|
|
52
|
+
old4blob: string = "";
|
|
53
|
+
new4main: number = 0;
|
|
54
|
+
new4text: string = "";
|
|
55
|
+
new4blob: string = "";
|
|
56
|
+
colField: string = "";
|
|
57
|
+
billType: number = 0;
|
|
58
|
+
billDate: number = 0;
|
|
59
|
+
billUses: string = "";
|
|
60
|
+
billMemo: string = "";
|
|
61
|
+
}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { TCore, TVary } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IVaryMainResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
varyIndx: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
kjndKJQJ: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataType: number;
|
|
16
|
+
dataDate: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataGUID: string;
|
|
19
|
+
userMain: number;
|
|
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
|
+
sourceND: number;
|
|
31
|
+
menuMain: number;
|
|
32
|
+
menuUUID: string;
|
|
33
|
+
unitMain: number;
|
|
34
|
+
deptMain: number;
|
|
35
|
+
sqbmText: string;
|
|
36
|
+
sqyhText: string;
|
|
37
|
+
flowUndo: number;
|
|
38
|
+
flowText: string;
|
|
39
|
+
flowUser: string;
|
|
40
|
+
varyType: number;
|
|
41
|
+
varyDate: number;
|
|
42
|
+
varyStat: number;
|
|
43
|
+
varyCode: string;
|
|
44
|
+
varyName: string;
|
|
45
|
+
varyUses: string;
|
|
46
|
+
varyMemo: string;
|
|
47
|
+
|
|
48
|
+
valueOld: number;
|
|
49
|
+
valueNew: number;
|
|
50
|
+
|
|
51
|
+
coverURL: string;
|
|
52
|
+
touchURL: string;
|
|
53
|
+
deptName: string;
|
|
54
|
+
sourceBM: string;
|
|
55
|
+
unitText: string;
|
|
56
|
+
sourceDW: string;
|
|
57
|
+
lastDate: number;
|
|
58
|
+
lastTime: number;
|
|
59
|
+
flowMain: number;
|
|
60
|
+
flowNode: number;
|
|
61
|
+
flowStat: number;
|
|
62
|
+
didFirst: number;
|
|
63
|
+
sysClasc: number;
|
|
64
|
+
lastMemo: string;
|
|
65
|
+
userName: string;
|
|
66
|
+
userGUID: string;
|
|
67
|
+
cloneOld: number;
|
|
68
|
+
|
|
69
|
+
listPath: TCore.IPathResponse[];
|
|
70
|
+
listSQBM: TCore.IDeptResponse[];
|
|
71
|
+
listSQYH: TCore.IUserResponse[];
|
|
72
|
+
listBill: TVary.IVaryMainResponse[];
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export class TVaryMainResponse implements IVaryMainResponse {
|
|
76
|
+
whoBuild: number = 0;
|
|
77
|
+
userIndx: number = 0;
|
|
78
|
+
varyIndx: number = 0;
|
|
79
|
+
parentID: number = 0;
|
|
80
|
+
hashCode: number = 0;
|
|
81
|
+
dataLevl: number = 0;
|
|
82
|
+
dataFrom: number = 0;
|
|
83
|
+
kjndKJQJ: number = 0;
|
|
84
|
+
dataStat: number = 0;
|
|
85
|
+
dataOrdr: number = 0;
|
|
86
|
+
dataHide: number = 0;
|
|
87
|
+
dataType: number = 0;
|
|
88
|
+
dataDate: number = 0;
|
|
89
|
+
dataTime: number = 0;
|
|
90
|
+
dataGUID: string = "";
|
|
91
|
+
userMain: number = 0;
|
|
92
|
+
mastName: string = "";
|
|
93
|
+
mastGUID: string = "";
|
|
94
|
+
createBy: string = "";
|
|
95
|
+
createAt: number = 0;
|
|
96
|
+
updateBy: string = "";
|
|
97
|
+
updateAt: number = 0;
|
|
98
|
+
deleteBy: string = "";
|
|
99
|
+
deleteAt: number = 0;
|
|
100
|
+
queuesBy: number = 0;
|
|
101
|
+
entityID: string = "";
|
|
102
|
+
sourceND: number = 0;
|
|
103
|
+
menuMain: number = 0;
|
|
104
|
+
menuUUID: string = "";
|
|
105
|
+
unitMain: number = 0;
|
|
106
|
+
deptMain: number = 0;
|
|
107
|
+
sqbmText: string = "";
|
|
108
|
+
sqyhText: string = "";
|
|
109
|
+
flowUndo: number = 0;
|
|
110
|
+
flowText: string = "";
|
|
111
|
+
flowUser: string = "";
|
|
112
|
+
varyType: number = 0;
|
|
113
|
+
varyDate: number = 0;
|
|
114
|
+
varyStat: number = 0;
|
|
115
|
+
varyCode: string = "";
|
|
116
|
+
varyName: string = "";
|
|
117
|
+
varyUses: string = "";
|
|
118
|
+
varyMemo: string = "";
|
|
119
|
+
valueOld: number = 0;
|
|
120
|
+
valueNew: number = 0;
|
|
121
|
+
coverURL: string = "";
|
|
122
|
+
touchURL: string = "";
|
|
123
|
+
deptName: string = "";
|
|
124
|
+
sourceBM: string = "";
|
|
125
|
+
unitText: string = "";
|
|
126
|
+
sourceDW: string = "";
|
|
127
|
+
lastDate: number = 0;
|
|
128
|
+
lastTime: number = 0;
|
|
129
|
+
flowMain: number = 0;
|
|
130
|
+
flowNode: number = 0;
|
|
131
|
+
flowStat: number = 0;
|
|
132
|
+
didFirst: number = 0;
|
|
133
|
+
sysClasc: number = 0;
|
|
134
|
+
lastMemo: string = "";
|
|
135
|
+
userName: string = "";
|
|
136
|
+
userGUID: string = "";
|
|
137
|
+
cloneOld: number = 0;
|
|
138
|
+
|
|
139
|
+
listPath: TCore.IPathResponse[] = [];
|
|
140
|
+
listSQBM: TCore.IDeptResponse[] = [];
|
|
141
|
+
listSQYH: TCore.IUserResponse[] = [];
|
|
142
|
+
listBill: TVary.IVaryMainResponse[] = [];
|
|
143
|
+
}
|
|
@@ -687,7 +687,6 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
687
687
|
result.flowNode = bill.flowNode;
|
|
688
688
|
result.notified = "";
|
|
689
689
|
result.entityID = bill.entityID;
|
|
690
|
-
result.billMain = bill.billIndx;
|
|
691
690
|
result.billCode = bill.yzhtCode;
|
|
692
691
|
result.billMemo = bill.yzhtMemo;
|
|
693
692
|
result.billUses = "";
|
|
@@ -698,6 +697,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
698
697
|
result.createBy = bill.createBy;
|
|
699
698
|
result.unitMain = bill.unitMain;
|
|
700
699
|
result.menuUUID = bill.menuUUID;
|
|
700
|
+
result.billMain = bill.yzhtIndx;
|
|
701
701
|
result.deptMain = bill.deptMain;
|
|
702
702
|
result.flowStat = bill.yzhtStat;
|
|
703
703
|
return result;
|