@ningboyz/types 1.5.47 → 1.5.49
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
|
@@ -27,7 +27,6 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
27
27
|
unitMain: number;
|
|
28
28
|
viewIndx: any;
|
|
29
29
|
viewName: any;
|
|
30
|
-
billCode: string;
|
|
31
30
|
/** 单位编码链 */
|
|
32
31
|
codeFull: string;
|
|
33
32
|
createAt: number;
|
|
@@ -52,6 +51,7 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
52
51
|
listDWLX: any;
|
|
53
52
|
mastGUID: string;
|
|
54
53
|
mastName: string;
|
|
54
|
+
billCode: string;
|
|
55
55
|
/** 单位全称链 */
|
|
56
56
|
nameFull: string;
|
|
57
57
|
/** 单位简称 */
|
|
@@ -85,6 +85,9 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
|
|
|
85
85
|
unitParaConv: IUnitResponseElemPara;
|
|
86
86
|
hzValue1: number;
|
|
87
87
|
codeFullN: string;
|
|
88
|
+
code4Old: string;
|
|
89
|
+
ding4APP: string;
|
|
90
|
+
usciName: string;
|
|
88
91
|
/** 统一信用代码 */
|
|
89
92
|
usciCode: string;
|
|
90
93
|
/** 所属集团名称 */
|
|
@@ -139,7 +142,6 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
139
142
|
unitMain: number = 0;
|
|
140
143
|
viewIndx: any;
|
|
141
144
|
viewName: any;
|
|
142
|
-
billCode: string = "";
|
|
143
145
|
codeFull: string = "";
|
|
144
146
|
createAt: number = 0;
|
|
145
147
|
createBy: string = "";
|
|
@@ -185,6 +187,10 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
185
187
|
unitParaConv: IUnitResponseElemPara = new TUnitResponseElemPara();
|
|
186
188
|
hzValue1: number = 0;
|
|
187
189
|
codeFullN: string = "";
|
|
190
|
+
billCode: string = "";
|
|
191
|
+
code4Old: string = "";
|
|
192
|
+
ding4APP: string = "";
|
|
193
|
+
usciName: string = "";
|
|
188
194
|
usciCode: string = "";
|
|
189
195
|
belongToText: string = "";
|
|
190
196
|
belongToUsci: string = "";
|
|
@@ -215,7 +221,6 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
215
221
|
gnkmName: string = ""; //功能科目
|
|
216
222
|
gzdfType: number = 0; // 是否启用工资代发
|
|
217
223
|
|
|
218
|
-
|
|
219
224
|
constructor(card: any = {}) {
|
|
220
225
|
super();
|
|
221
226
|
if (card) {
|
|
@@ -231,7 +236,7 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
|
|
|
231
236
|
try {
|
|
232
237
|
const obj = JSON.parse(unitPara) as TUnitResponseElemPara;
|
|
233
238
|
return _.merge(defaultUnitPara, obj);
|
|
234
|
-
} catch (e) {
|
|
239
|
+
} catch (e) {}
|
|
235
240
|
return defaultUnitPara;
|
|
236
241
|
}
|
|
237
242
|
|
|
@@ -74,6 +74,7 @@ export interface ICronMainResponse {
|
|
|
74
74
|
whoBuild: number; //#pk
|
|
75
75
|
workStat: number;
|
|
76
76
|
workerID: number;
|
|
77
|
+
todoMemo: string;
|
|
77
78
|
}
|
|
78
79
|
|
|
79
80
|
export class TCronMainResponse implements ICronMainResponse {
|
|
@@ -148,6 +149,7 @@ export class TCronMainResponse implements ICronMainResponse {
|
|
|
148
149
|
whoBuild: number = 0;
|
|
149
150
|
workStat: number = 0;
|
|
150
151
|
workerID: number = 0;
|
|
152
|
+
todoMemo: string = "";
|
|
151
153
|
|
|
152
154
|
constructor(card: any = {}) {
|
|
153
155
|
if (card) {
|