@ningboyz/types 1.4.43 → 1.4.45
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/ICardRoomResponse.ts +49 -43
- package/src/const/const_type_name.ts +18 -0
- package/src/core/IUnitResponse.ts +3 -0
- package/src/hznj/IHznjBaseItemResponse.ts +9 -0
- package/src/hznj/IHznjBillResponse.ts +9 -0
- package/src/hznj/IHznjNotiBillResponse.ts +9 -2
- package/src/hznj/IHznjXmsyItemResponse.ts +9 -0
- package/src/hznj/IHznjXmsyResponse.ts +4 -0
- package/src/hznk/IHznkDataBillResponse.ts +5 -0
- package/src/japz/IJapzItemResponse.ts +9 -0
package/package.json
CHANGED
|
@@ -41,7 +41,7 @@ export interface ICardRoomResponse {
|
|
|
41
41
|
roomCzmj: number;
|
|
42
42
|
/** 闲置面积 */
|
|
43
43
|
roomXzmj: number;
|
|
44
|
-
/**
|
|
44
|
+
/** 房屋状态 */
|
|
45
45
|
roomZczt: number;
|
|
46
46
|
/** 电表号 */
|
|
47
47
|
readTxt1: string;
|
|
@@ -88,28 +88,31 @@ export interface ICardRoomResponse {
|
|
|
88
88
|
|
|
89
89
|
/** 是否用于公共服务设施 */
|
|
90
90
|
isCommon: number;
|
|
91
|
-
|
|
92
|
-
sydwText:string;
|
|
93
|
-
|
|
94
|
-
fwytMain:number;
|
|
95
|
-
|
|
96
|
-
roomUses:string;
|
|
97
|
-
|
|
98
|
-
jydwText:string;
|
|
99
|
-
|
|
100
|
-
dwxzMain:number;
|
|
101
|
-
|
|
102
|
-
dwxzText:string;
|
|
91
|
+
/** 使用单位 */
|
|
92
|
+
sydwText: string;
|
|
93
|
+
/** 用途key */
|
|
94
|
+
fwytMain: number;
|
|
95
|
+
/** 用途 */
|
|
96
|
+
roomUses: string;
|
|
97
|
+
/** 借用单位 */
|
|
98
|
+
jydwText: string;
|
|
99
|
+
/** 借用单位性质 */
|
|
100
|
+
dwxzMain: number;
|
|
101
|
+
/** 借用单位性质文本 */
|
|
102
|
+
dwxzText: string;
|
|
103
103
|
/** 借用开始时间*/
|
|
104
|
-
startDay:number;
|
|
104
|
+
startDay: number;
|
|
105
105
|
/** 借用结束时间*/
|
|
106
|
-
endedDay:number;
|
|
107
|
-
|
|
108
|
-
syyhText:string;
|
|
109
|
-
|
|
110
|
-
realUses:string;
|
|
111
|
-
|
|
112
|
-
asCommon:number;
|
|
106
|
+
endedDay: number;
|
|
107
|
+
/** 实际使用人 */
|
|
108
|
+
syyhText: string;
|
|
109
|
+
/** 房产实际用途 */
|
|
110
|
+
realUses: string;
|
|
111
|
+
/** 实际是否用于公共服务设施 */
|
|
112
|
+
asCommon: number;
|
|
113
|
+
|
|
114
|
+
/** 出租状态:1:已出租;0:未出租;-1:初始化 */
|
|
115
|
+
roomStat: number;
|
|
113
116
|
}
|
|
114
117
|
|
|
115
118
|
export class TCardRoomResponse implements ICardRoomResponse {
|
|
@@ -154,7 +157,7 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
154
157
|
roomCzmj: number = 0;
|
|
155
158
|
/** 闲置面积 */
|
|
156
159
|
roomXzmj: number = 0;
|
|
157
|
-
/**
|
|
160
|
+
/** 房屋状态 */
|
|
158
161
|
roomZczt: number = 0;
|
|
159
162
|
/** 电表号 */
|
|
160
163
|
readTxt1: string = "";
|
|
@@ -198,29 +201,32 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
198
201
|
cardYnss: number = 0;
|
|
199
202
|
/** 是否危房 */
|
|
200
203
|
cardYnwf: number = 0;
|
|
204
|
+
|
|
201
205
|
/** 是否用于公共服务设施 */
|
|
202
206
|
isCommon: number = 0;
|
|
203
|
-
|
|
204
|
-
sydwText:string = "";
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
207
|
+
/** 实际使用单位 */
|
|
208
|
+
sydwText: string = "";
|
|
209
|
+
/** 用途key */
|
|
210
|
+
fwytMain: number = 0;
|
|
211
|
+
/** 用途 */
|
|
212
|
+
roomUses: string = "";
|
|
213
|
+
/** 借用单位 */
|
|
214
|
+
jydwText: string = "";
|
|
215
|
+
/** 借用单位性质 */
|
|
216
|
+
dwxzMain: number = 0;
|
|
217
|
+
/** 借用单位性质文本 */
|
|
218
|
+
dwxzText: string = "";
|
|
214
219
|
/** 借用开始时间*/
|
|
215
|
-
startDay:number = 0;
|
|
220
|
+
startDay: number = 0;
|
|
216
221
|
/** 借用结束时间*/
|
|
217
|
-
endedDay:number = 0;
|
|
218
|
-
|
|
219
|
-
syyhText:string = "";
|
|
220
|
-
|
|
221
|
-
realUses:string = "";
|
|
222
|
-
|
|
223
|
-
asCommon:number = 0;
|
|
224
|
-
|
|
225
|
-
|
|
222
|
+
endedDay: number = 0;
|
|
223
|
+
/** 实际使用人 */
|
|
224
|
+
syyhText: string = "";
|
|
225
|
+
/** 房产实际用途 */
|
|
226
|
+
realUses: string = "";
|
|
227
|
+
/** 实际是否用于公共服务设施 */
|
|
228
|
+
asCommon: number = 0;
|
|
229
|
+
|
|
230
|
+
/** 出租状态:1:已出租;0:未出租;-1:初始化 */
|
|
231
|
+
roomStat: number = -1;
|
|
226
232
|
}
|
|
@@ -200,6 +200,7 @@ export const CONST_SYS_TYPEU_LSGL_ZFFS = "流水管理-支付方式";
|
|
|
200
200
|
export const CONST_SYS_TYPEU_公章管理_公章类型 = "公章管理-公章类型";
|
|
201
201
|
export const CONST_SYS_TYPEU_公章管理_文件类型 = "公章管理-文件类型";
|
|
202
202
|
export const CONST_SYS_TYPEU_资产调拨_单据类型 = "资产调拨-单据类型";
|
|
203
|
+
export const CONST_SYS_TYPEU_资产调拨_合同用章 = "公章管理-合同用章";
|
|
203
204
|
|
|
204
205
|
export const CONST_SYS_TYPEU_科研管理_类型 = "科研管理-类型";
|
|
205
206
|
export const CONST_SYS_TYPEU_科研管理_项目层级 = "科研管理-项目层级";
|
|
@@ -258,8 +259,25 @@ export const CONST_SYS_TYPEU_决策管理_付款方式 = "决策管理-付款方
|
|
|
258
259
|
|
|
259
260
|
export const CONST_SYS_TYPEU_知识产权_知识产权类型 = "知识产权-知识产权类型";
|
|
260
261
|
export const CONST_SYS_TYPEU_论文著作_业务类型 = "论文著作-业务类型";
|
|
262
|
+
export const CONST_SYS_TYPEU_论文管理_期刊级别 = "论文管理-期刊级别";
|
|
263
|
+
export const CONST_SYS_TYPEU_论文管理_著作出版社层级 = "论文管理-著作出版社层级";
|
|
264
|
+
export const CONST_SYS_TYPEU_论文管理_作者排名 = "论文管理-作者排名";
|
|
261
265
|
export const CONST_SYS_TYPEU_专利软著_类型 = "专利软著-类型";
|
|
262
266
|
export const CONST_SYS_TYPEU_专利软著_业务类型 = "专利软著-业务类型";
|
|
267
|
+
export const CONST_SYS_TYPEU_专利软著_软著类型 = "专利软著-软著类型";
|
|
268
|
+
export const CONST_SYS_TYPEU_专利软著_专利类型 = "专利软著-专利类型";
|
|
269
|
+
export const CONST_SYS_TYPEU_成果管理_领导层级 = "成果管理-领导层级";
|
|
270
|
+
export const CONST_SYS_TYPEU_标准管理_标准类型 = "标准管理-标准类型";
|
|
271
|
+
|
|
272
|
+
export const CONST_SYS_TYPEU_标准管理_制定人排名 = "标准管理-制定人排名";
|
|
273
|
+
export const CONST_SYS_TYPEU_获奖管理_获奖等级 = "获奖管理-获奖等级";
|
|
274
|
+
export const CONST_SYS_TYPEU_获奖管理_单位排名 = "获奖管理-单位排名";
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
export const CONST_SYS_TYPEU_品种技术_层级 = "品种技术-层级";
|
|
278
|
+
export const CONST_SYS_TYPEU_品种技术_品种类型 = "品种技术-品种类型";
|
|
279
|
+
export const CONST_SYS_TYPEU_品种技术_技术类型 = "品种技术-技术类型";
|
|
280
|
+
|
|
263
281
|
|
|
264
282
|
/**
|
|
265
283
|
* 甬农检
|
|
@@ -131,6 +131,7 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
131
131
|
codeTxt2: string; //对应统发工资编码
|
|
132
132
|
gnkmCode: string; //功能科目
|
|
133
133
|
gnkmName: string; //功能科目
|
|
134
|
+
gzdfType: number; // 是否启用工资代发
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnitResponse {
|
|
@@ -210,6 +211,8 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
210
211
|
codeTxt2: string = ""; //对应统发工资编码
|
|
211
212
|
gnkmCode: string = ""; //功能科目
|
|
212
213
|
gnkmName: string = ""; //功能科目
|
|
214
|
+
gzdfType: number = 0; // 是否启用工资代发
|
|
215
|
+
|
|
213
216
|
|
|
214
217
|
constructor(card: any = {}) {
|
|
215
218
|
super();
|
|
@@ -54,6 +54,10 @@ export interface IHznjBaseItemResponse {
|
|
|
54
54
|
accorTxt: string;
|
|
55
55
|
/**关联检测项目ID */
|
|
56
56
|
fromItemMain: number;
|
|
57
|
+
/**依据方法 */
|
|
58
|
+
yjffText: string;
|
|
59
|
+
/**制备要求 */
|
|
60
|
+
zbyqText: string;
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
@@ -98,6 +102,11 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
|
98
102
|
accorTxt: string = "";
|
|
99
103
|
fromItemMain: number = 0;
|
|
100
104
|
|
|
105
|
+
/**依据方法 */
|
|
106
|
+
yjffText: string = "";
|
|
107
|
+
/**制备要求 */
|
|
108
|
+
zbyqText: string = "";
|
|
109
|
+
|
|
101
110
|
constructor(data: Partial<IHznjBaseItemResponse> = {}) {
|
|
102
111
|
if (data) {
|
|
103
112
|
_.merge(this, _.pick(data, Object.keys(this)));
|
|
@@ -62,6 +62,11 @@ export interface IHznjBillResponse {
|
|
|
62
62
|
groupDic: number;
|
|
63
63
|
/**组 */
|
|
64
64
|
groupTxt: string;
|
|
65
|
+
|
|
66
|
+
/**依据方法 */
|
|
67
|
+
yjffText: string;
|
|
68
|
+
/**制备要求 */
|
|
69
|
+
zbyqText: string;
|
|
65
70
|
}
|
|
66
71
|
|
|
67
72
|
export class THznjBillResponse implements IHznjBillResponse {
|
|
@@ -105,6 +110,10 @@ export class THznjBillResponse implements IHznjBillResponse {
|
|
|
105
110
|
totalVal: string = "";
|
|
106
111
|
groupDic: number = 0;
|
|
107
112
|
groupTxt: string = "";
|
|
113
|
+
/**依据方法 */
|
|
114
|
+
yjffText: string = "";
|
|
115
|
+
/**制备要求 */
|
|
116
|
+
zbyqText: string = "";
|
|
108
117
|
|
|
109
118
|
constructor(data: Partial<IHznjBillResponse> = {}) {
|
|
110
119
|
if (data) {
|
|
@@ -85,13 +85,17 @@ export interface IHznjNotiBillResponse {
|
|
|
85
85
|
/**关联检测项目ID */
|
|
86
86
|
fromItemMain: number;
|
|
87
87
|
|
|
88
|
+
/**依据方法 */
|
|
89
|
+
yjffText: string;
|
|
90
|
+
/**制备要求 */
|
|
91
|
+
zbyqText: string;
|
|
92
|
+
|
|
88
93
|
fromMotiCode: string;
|
|
89
94
|
fromSqyhText: string;
|
|
90
95
|
fromSqbmText: string;
|
|
91
96
|
fromNotiDate: number;
|
|
92
97
|
fromNotiMemo: string;
|
|
93
98
|
cpbzText: string;
|
|
94
|
-
zbyqText: string;
|
|
95
99
|
deptName: string;
|
|
96
100
|
|
|
97
101
|
coverURL: string;
|
|
@@ -174,6 +178,10 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
174
178
|
fromXmjjItem: number = 0;
|
|
175
179
|
/**关联检测项目ID */
|
|
176
180
|
fromItemMain: number = 0;
|
|
181
|
+
/**依据方法 */
|
|
182
|
+
yjffText: string = "";
|
|
183
|
+
/**制备要求 */
|
|
184
|
+
zbyqText: string = "";
|
|
177
185
|
|
|
178
186
|
fromMotiCode: string = "";
|
|
179
187
|
fromSqyhText: string = "";
|
|
@@ -181,7 +189,6 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
181
189
|
fromNotiDate: number = 0;
|
|
182
190
|
fromNotiMemo: string = "";
|
|
183
191
|
cpbzText: string = "";
|
|
184
|
-
zbyqText: string = "";
|
|
185
192
|
deptName: string = "";
|
|
186
193
|
|
|
187
194
|
coverURL: string = "";
|
|
@@ -43,6 +43,11 @@ export interface IHznjXmsyItemResponse {
|
|
|
43
43
|
/**组 */
|
|
44
44
|
groupTxt: string;
|
|
45
45
|
fromItemMain: number;
|
|
46
|
+
|
|
47
|
+
/**依据方法 */
|
|
48
|
+
yjffText: string;
|
|
49
|
+
/**制备要求 */
|
|
50
|
+
zbyqText: string;
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
@@ -74,6 +79,10 @@ export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
|
74
79
|
totalVal: string = "";
|
|
75
80
|
isActive: number = 0;
|
|
76
81
|
itemMemo: string = "";
|
|
82
|
+
/**依据方法 */
|
|
83
|
+
yjffText: string = "";
|
|
84
|
+
/**制备要求 */
|
|
85
|
+
zbyqText: string = "";
|
|
77
86
|
/**组 */
|
|
78
87
|
groupTxt: string = "";
|
|
79
88
|
fromItemMain: number = 0;
|
|
@@ -126,6 +126,8 @@ export interface IHznjXmsyResponse {
|
|
|
126
126
|
baseText: string;
|
|
127
127
|
/**样品基数 */
|
|
128
128
|
ypjsText: string;
|
|
129
|
+
/**抽样地点 */
|
|
130
|
+
cAddress: string;
|
|
129
131
|
|
|
130
132
|
coverURL: string;
|
|
131
133
|
touchURL: string;
|
|
@@ -252,6 +254,8 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
252
254
|
baseText: string = "";
|
|
253
255
|
/**样品基数 */
|
|
254
256
|
ypjsText: string = "";
|
|
257
|
+
/**抽样地点 */
|
|
258
|
+
cAddress: string = "";
|
|
255
259
|
|
|
256
260
|
coverURL: string = "";
|
|
257
261
|
touchURL: string = "";
|
|
@@ -32,6 +32,9 @@ export interface IHznkDataBillResponse {
|
|
|
32
32
|
/**赋分方案 */
|
|
33
33
|
dictMain: number;
|
|
34
34
|
dictName: string;
|
|
35
|
+
/**品种 */
|
|
36
|
+
dic2Main: number;
|
|
37
|
+
dic2Name: string;
|
|
35
38
|
fromWhoBuild: number;
|
|
36
39
|
fromUserIndx: number;
|
|
37
40
|
fromHznkIndx: number;
|
|
@@ -65,6 +68,8 @@ export class THznkDataBillResponse implements IHznkDataBillResponse {
|
|
|
65
68
|
ratioVal: number = 0;
|
|
66
69
|
dictMain: number = 0;
|
|
67
70
|
dictName: string = "";
|
|
71
|
+
dic2Main: number = 0;
|
|
72
|
+
dic2Name: string = "";
|
|
68
73
|
fromWhoBuild: number = 0;
|
|
69
74
|
fromUserIndx: number = 0;
|
|
70
75
|
fromHznkIndx: number = 0;
|
|
@@ -52,6 +52,11 @@ export interface IJapzItemResponse {
|
|
|
52
52
|
/** 备注信息 */
|
|
53
53
|
fromItemMemo: string;
|
|
54
54
|
|
|
55
|
+
/**依据方法 */
|
|
56
|
+
yjffText: string;
|
|
57
|
+
/**制备要求 */
|
|
58
|
+
zbyqText: string;
|
|
59
|
+
|
|
55
60
|
/** 组 */
|
|
56
61
|
groupTxt: string;
|
|
57
62
|
/**组字典ID */
|
|
@@ -109,6 +114,10 @@ export class TJapzItemResponse implements IJapzItemResponse {
|
|
|
109
114
|
itemCode: string = "";
|
|
110
115
|
itemName: string = "";
|
|
111
116
|
itemMemo: string = "";
|
|
117
|
+
/**依据方法 */
|
|
118
|
+
yjffText: string = "";
|
|
119
|
+
/**制备要求 */
|
|
120
|
+
zbyqText: string = "";
|
|
112
121
|
|
|
113
122
|
detecVal: string = "";
|
|
114
123
|
limitVal: string = "";
|