@ningboyz/types 1.0.154 → 1.0.156

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.0.154",
3
+ "version": "1.0.156",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -31,7 +31,7 @@ export interface IGamsCnfgResponse {
31
31
  cnfgMemo: string;
32
32
  unitText: string;
33
33
 
34
- listYSDW: IUnitResponse[];
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
- listYSDW: IUnitResponse[] = [];
72
+ /** 单位归属.列表 */
73
+ listUnit: IUnitResponse[] = [];
69
74
  }
@@ -1,4 +1,4 @@
1
- import type {IUnitResponse, IUserResponse} from "../core";
1
+ import type { IUnitResponse, IUserResponse } from "../core";
2
2
 
3
3
  export interface IUserState {
4
4
  usrtoken: string;
@@ -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)));