@ningboyz/types 1.2.159 → 1.2.160--fixed
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
|
@@ -241,3 +241,8 @@ export const CONST_SYS_TYPEU_知识产权_知识产权类型 = "知识产权-知
|
|
|
241
241
|
export const CONST_SYS_TYPEU_论文著作_业务类型 = "论文著作-业务类型";
|
|
242
242
|
export const CONST_SYS_TYPEU_专利软著_类型 = "专利软著-类型";
|
|
243
243
|
export const CONST_SYS_TYPEU_专利软著_业务类型 = "专利软著-业务类型";
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* 甬农检
|
|
247
|
+
* */
|
|
248
|
+
export const CONST_SYS_TYPEU_甬农检_检验类型 = "甬农检-检验类型";
|
package/src/const/index.ts
CHANGED
|
@@ -26,6 +26,8 @@ import * as Module from "./const_module";
|
|
|
26
26
|
import * as Hznt from "./const_hznt";
|
|
27
27
|
import * as GlpzMode from "./const_glpz_mode";
|
|
28
28
|
import * as UserAcnoDataType from "./const_user_acno";
|
|
29
|
+
import * as TabsStat from "./const_stat";
|
|
30
|
+
|
|
29
31
|
export {
|
|
30
32
|
Align,
|
|
31
33
|
Audit,
|
|
@@ -52,7 +54,8 @@ export {
|
|
|
52
54
|
Yiha,
|
|
53
55
|
Zbzd,
|
|
54
56
|
GlpzMode,
|
|
55
|
-
UserAcnoDataType
|
|
57
|
+
UserAcnoDataType,
|
|
58
|
+
TabsStat
|
|
56
59
|
};
|
|
57
60
|
|
|
58
61
|
export type ModuleType = (typeof ConstModuleType)[keyof typeof ConstModuleType];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IPathResponse } from "../core/IPathResponse";
|
|
2
2
|
import { TFlowDataResponse } from "../flow";
|
|
3
3
|
import { IHznkMainResponse } from "./IHznkMainResponse";
|
|
4
|
+
import { IHznkYssqYsxqResponse } from "./IHznkYssqYsxqResponse";
|
|
4
5
|
|
|
5
6
|
export interface IHznkYssqResponse {
|
|
6
7
|
whoBuild: number;
|
|
@@ -72,6 +73,7 @@ export interface IHznkYssqResponse {
|
|
|
72
73
|
listPath: IPathResponse[];
|
|
73
74
|
/**关联项目 */
|
|
74
75
|
listFrom: IHznkMainResponse[];
|
|
76
|
+
listYsxq: IHznkYssqYsxqResponse[];
|
|
75
77
|
}
|
|
76
78
|
|
|
77
79
|
export class THznkYssqResponse implements IHznkYssqResponse {
|
|
@@ -137,6 +139,7 @@ export class THznkYssqResponse implements IHznkYssqResponse {
|
|
|
137
139
|
|
|
138
140
|
listPath: IPathResponse[] = [];
|
|
139
141
|
listFrom: IHznkMainResponse[] = [];
|
|
142
|
+
listYsxq: IHznkYssqYsxqResponse[] = [];
|
|
140
143
|
|
|
141
144
|
static toFlowDatas(card: IHznkYssqResponse[]): TFlowDataResponse[] {
|
|
142
145
|
return card.map((u) => this.toFlowData(u));
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export interface IHznkYssqYsxqResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
yssqIndx: 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
|
+
ysxqType: number;
|
|
20
|
+
zzdwText: string;
|
|
21
|
+
baseLevl: number;
|
|
22
|
+
ysxqDate: number;
|
|
23
|
+
limitVal: number;
|
|
24
|
+
ysxqMemo: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export class THznkYssqYsxqResponse implements IHznkYssqYsxqResponse {
|
|
28
|
+
whoBuild: number = 0;
|
|
29
|
+
userIndx: number = 0;
|
|
30
|
+
yssqIndx: number = 0;
|
|
31
|
+
idEntity: number = 0;
|
|
32
|
+
dataStat: number = 0;
|
|
33
|
+
dataHide: number = 0;
|
|
34
|
+
dataOrdr: number = 0;
|
|
35
|
+
dataFrom: number = 0;
|
|
36
|
+
dataDate: number = 0;
|
|
37
|
+
dataTime: number = 0;
|
|
38
|
+
createBy: string = "";
|
|
39
|
+
createAt: number = 0;
|
|
40
|
+
updateBy: string = "";
|
|
41
|
+
updateAt: number = 0;
|
|
42
|
+
deleteBy: string = "";
|
|
43
|
+
deleteAt: number = 0;
|
|
44
|
+
queuesBy: number = 0;
|
|
45
|
+
ysxqType: number = 0;
|
|
46
|
+
zzdwText: string = "";
|
|
47
|
+
baseLevl: number = 0;
|
|
48
|
+
ysxqDate: number = 0;
|
|
49
|
+
limitVal: number = 0;
|
|
50
|
+
ysxqMemo: string = "";
|
|
51
|
+
}
|