@ningboyz/types 1.0.155 → 1.0.157
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
|
@@ -31,7 +31,7 @@ export interface IGamsCnfgResponse {
|
|
|
31
31
|
cnfgMemo: string;
|
|
32
32
|
unitText: string;
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
listUnit: IUnitResponse[];
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export class TGamsCnfgResponse implements IGamsCnfgResponse {
|
|
@@ -60,10 +60,15 @@ export class TGamsCnfgResponse implements IGamsCnfgResponse {
|
|
|
60
60
|
deleteAt: number = 0;
|
|
61
61
|
queuesBy: number = 0;
|
|
62
62
|
entityID: string = "";
|
|
63
|
+
|
|
64
|
+
/** 账套编码 */
|
|
63
65
|
cnfgCode: string = "";
|
|
66
|
+
/** 账套名称 */
|
|
64
67
|
cnfgName: string = "";
|
|
65
68
|
cnfgMemo: string = "";
|
|
69
|
+
/** 单位归属.文本 */
|
|
66
70
|
unitText: string = "";
|
|
67
71
|
|
|
68
|
-
|
|
72
|
+
/** 单位归属.列表 */
|
|
73
|
+
listUnit: IUnitResponse[] = [];
|
|
69
74
|
}
|
|
@@ -62,6 +62,9 @@ export interface IZbzdMainResponse {
|
|
|
62
62
|
dataType: number
|
|
63
63
|
zbzdCode: string
|
|
64
64
|
zbzdUses: string
|
|
65
|
+
|
|
66
|
+
deptName: string
|
|
67
|
+
unitNamf: string
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
@@ -125,6 +128,9 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
125
128
|
zbzdCode: string = ''
|
|
126
129
|
zbzdUses: string = ''
|
|
127
130
|
|
|
131
|
+
deptName: string = ''
|
|
132
|
+
unitNamf: string = ''
|
|
133
|
+
|
|
128
134
|
constructor(card: any = {}) {
|
|
129
135
|
if (card) {
|
|
130
136
|
_.merge(this, _.pick(card, Object.keys(this)));
|