@ningboyz/types 1.2.118 → 1.2.120
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
package/src/const/const_hznk.ts
CHANGED
|
@@ -4,6 +4,7 @@ export const CONST_HZNK_DATA_DATA_TYPE_TO_人才称号 = 1002;
|
|
|
4
4
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_知识产权 = 1003
|
|
5
5
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_论文著作 = 1004
|
|
6
6
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_软著专利 = 1005
|
|
7
|
+
export const CONST_HZNK_DATA_DATA_TYPE_TO_品种技术 = 1017
|
|
7
8
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_发布标准 = 1006
|
|
8
9
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖申请 = 1007
|
|
9
10
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_获奖成果 = 1008
|
|
@@ -15,4 +16,4 @@ export const CONST_HZNK_DATA_DATA_TYPE_TO_对外培训 = 1012
|
|
|
15
16
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_科技特派 = 1013
|
|
16
17
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_学术交流 = 1014
|
|
17
18
|
export const CONST_HZNK_DATA_DATA_TYPE_TO_平台创建 = 1015
|
|
18
|
-
export const CONST_HZNK_DATA_DATA_TYPE_TO_创建团队 = 1016
|
|
19
|
+
export const CONST_HZNK_DATA_DATA_TYPE_TO_创建团队 = 1016
|
|
@@ -226,6 +226,8 @@ export const CONST_SYS_TYPEU_决策管理_付款方式 = "决策管理-付款方
|
|
|
226
226
|
|
|
227
227
|
export const CONST_SYS_TYPEU_知识产权_知识产权类型 = "知识产权-知识产权类型";
|
|
228
228
|
export const CONST_SYS_TYPEU_论文著作_业务类型 = "论文著作-业务类型";
|
|
229
|
+
export const CONST_SYS_TYPEU_专利软著_类型 = "专利软著-类型";
|
|
230
|
+
export const CONST_SYS_TYPEU_专利软著_业务类型 = "专利软著-业务类型";
|
|
229
231
|
|
|
230
232
|
|
|
231
233
|
|
|
@@ -19,6 +19,8 @@ export interface IDictResponseDictPara {
|
|
|
19
19
|
zcdbType: number; ///字典-资产调拨-单据类型 配置0, 为单位内,调拨只在同一个单位下进行,调拨到其他部门。配置1,为跨单位调拨。配置2,为跨部门调拨
|
|
20
20
|
/** 是否附件类型不判断必填 */
|
|
21
21
|
notRequiredPath: boolean;
|
|
22
|
+
/** 分值 */
|
|
23
|
+
fraction:number
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
@@ -35,4 +37,6 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
35
37
|
zcdbType: number = 0;
|
|
36
38
|
/** 是否附件类型不判断必填 */
|
|
37
39
|
notRequiredPath: boolean = false;
|
|
40
|
+
/** 分值 */
|
|
41
|
+
fraction:number=0
|
|
38
42
|
}
|
|
@@ -63,6 +63,8 @@ export interface IUserLiteResponse {
|
|
|
63
63
|
fromUserIndx: number; //#租户实例
|
|
64
64
|
fromSourceND: number; //#当前年度
|
|
65
65
|
zbdwText: string;
|
|
66
|
+
/**数据分类文本 (作者|通讯作者) */
|
|
67
|
+
dataUses: string;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
export class TUserLiteResponse implements IUserLiteResponse {
|
|
@@ -134,4 +136,6 @@ export class TUserLiteResponse implements IUserLiteResponse {
|
|
|
134
136
|
fromUserIndx: number = 0; // #租户实例
|
|
135
137
|
fromSourceND: number = 0; // #当前年度
|
|
136
138
|
zbdwText: string = "";
|
|
139
|
+
/**数据分类文本 (作者|通讯作者) */
|
|
140
|
+
dataUses: string= "";
|
|
137
141
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
2
|
+
|
|
1
3
|
export interface IHznkBaseWbdwResponse {
|
|
2
4
|
whoBuild: number;
|
|
3
5
|
userIndx: number;
|
|
@@ -44,4 +46,10 @@ export class THznkBaseWbdwResponse implements IHznkBaseWbdwResponse {
|
|
|
44
46
|
wbdwText: string = "";
|
|
45
47
|
wbdwMemo: string = "";
|
|
46
48
|
outerVal: number = 0;
|
|
49
|
+
|
|
50
|
+
constructor(data: Partial<IHznkBaseWbdwResponse> = {}) {
|
|
51
|
+
if (data) {
|
|
52
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
53
|
+
}
|
|
54
|
+
}
|
|
47
55
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _ from "lodash";
|
|
1
2
|
export interface IHznkMainWbdwResponse {
|
|
2
3
|
whoBuild: number;
|
|
3
4
|
userIndx: number;
|
|
@@ -44,4 +45,10 @@ export class THznkMainWbdwResponse implements IHznkMainWbdwResponse {
|
|
|
44
45
|
wbdwText: string = "";
|
|
45
46
|
wbdwMemo: string = "";
|
|
46
47
|
outerVal: number = 0;
|
|
48
|
+
|
|
49
|
+
constructor(data: Partial<IHznkMainWbdwResponse> = {}) {
|
|
50
|
+
if (data) {
|
|
51
|
+
_.merge(this, _.pick(data, Object.keys(this)));
|
|
52
|
+
}
|
|
53
|
+
}
|
|
47
54
|
}
|