@ningboyz/types 1.1.73 → 1.1.76
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/core/IUnitResponse.ts +13 -3
package/package.json
CHANGED
|
@@ -109,16 +109,21 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse[]> {
|
|
|
109
109
|
|
|
110
110
|
/** 折旧方法 */
|
|
111
111
|
realZjff: string;
|
|
112
|
-
/**
|
|
112
|
+
/**
|
|
113
113
|
* 父级编码
|
|
114
114
|
*/
|
|
115
115
|
parentCode: string;
|
|
116
|
-
/**
|
|
116
|
+
/**
|
|
117
117
|
* 父级名称
|
|
118
118
|
*/
|
|
119
119
|
parentName: string;
|
|
120
120
|
|
|
121
121
|
withCard: IUnitWithCardResponse;
|
|
122
|
+
|
|
123
|
+
codeTxt1: string; //对应一体化编码
|
|
124
|
+
codeTxt2: string; //对应统发工资编码
|
|
125
|
+
gnkmCode: string; //功能科目
|
|
126
|
+
gnkmName: string; //功能科目
|
|
122
127
|
}
|
|
123
128
|
|
|
124
129
|
export class TUnitResponse extends TBaseResponse<IUnitResponse[]> implements IUnitResponse {
|
|
@@ -181,7 +186,7 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse[]> implements IUn
|
|
|
181
186
|
|
|
182
187
|
usesStat: number = 0;
|
|
183
188
|
|
|
184
|
-
/** 折旧方法 */
|
|
189
|
+
/** 折旧方法 */
|
|
185
190
|
realZjff: string = "";
|
|
186
191
|
|
|
187
192
|
parentCode: string = "";
|
|
@@ -192,6 +197,11 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse[]> implements IUn
|
|
|
192
197
|
zclbtype: number = 0;
|
|
193
198
|
withCard: IUnitWithCardResponse = new TUnitWithCardResponse();
|
|
194
199
|
|
|
200
|
+
codeTxt1: string = ""; //对应一体化编码
|
|
201
|
+
codeTxt2: string = ""; //对应统发工资编码
|
|
202
|
+
gnkmCode: string = ""; //功能科目
|
|
203
|
+
gnkmName: string = ""; //功能科目
|
|
204
|
+
|
|
195
205
|
constructor(card: any = {}) {
|
|
196
206
|
super();
|
|
197
207
|
if (card) {
|