@ningboyz/types 1.4.15 → 1.4.17

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.4.15",
4
+ "version": "1.4.17",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -231,6 +231,7 @@ export const CONST_SYS_TYPEU_PTCJ_PTJB = "平台创建-平台级别";
231
231
  export const CONST_SYS_TYPEU_XSJL_XSLX = "学术交流-学术类型";
232
232
  export const CONST_SYS_TYPEU_XSJL_XSJB = "学术交流-学术级别";
233
233
  export const CONST_SYS_TYPEU_CXTD_KHDC = "创新团队-考核等次";
234
+ export const CONST_SYS_TYPEU_CXTD_TDMC = "创新团队-团队名称";
234
235
 
235
236
  export const CONST_SYS_TYPEU_JDGL_KYJXZT = "基地管理-科研绩效状态";
236
237
  export const CONST_SYS_TYPEU_JDGL_SQLX = "基地管理-申请类型";
@@ -69,6 +69,9 @@ export interface IJapzItemResponse {
69
69
  /**上级编码 */
70
70
  parentCD: string;
71
71
 
72
+ /**对应K7KM编码 导入时填写*/
73
+ fromK7kmKmbm: string;
74
+
72
75
  /**对应检测依据 */
73
76
  listK9km: IJapzK9kmResponse[];
74
77
  /**检测依据范围 */
@@ -122,6 +125,8 @@ export class TJapzItemResponse implements IJapzItemResponse {
122
125
  k9kmKmmc: string = "";
123
126
  k9kmKmid: number = 0;
124
127
  parentCD: string = "";
128
+ /**对应K7KM编码 */
129
+ fromK7kmKmbm: string = "";
125
130
 
126
131
  listK9km: IJapzK9kmResponse[] = [];
127
132
  listK9rg: IJapzK9kmResponse[] = [];
@@ -112,6 +112,9 @@ export interface IYzcgMainResponse {
112
112
  cggzMain: number;
113
113
  cggzCode: string;
114
114
 
115
+ /** 是否固定资产 */
116
+ usesCard: number;
117
+
115
118
  fromMyoaMain: number;
116
119
  fromMyoaStat: number;
117
120
 
@@ -241,6 +244,9 @@ export class TYzcgMainResponse implements IYzcgMainResponse {
241
244
  cggzCode: string = "";
242
245
  yzcgUses: string = "";
243
246
 
247
+ /** 是否固定资产 */
248
+ usesCard: number = 0;
249
+
244
250
  fromMyoaMain: number = 0;
245
251
  fromMyoaStat: number = 0;
246
252