@ningboyz/types 1.7.35 → 1.7.37

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.7.35",
4
+ "version": "1.7.37",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -87,6 +87,8 @@ export interface IGzzdMainResponse {
87
87
  wlzfDone: number;
88
88
  // 判断是否含有特殊人员
89
89
  fromUserSize: number;
90
+ // 银行卡类型
91
+ acnoType: number;
90
92
  gzzdFrom: number;
91
93
  fromGzjgQueuesBy: number; // 工资结构按照Y中的顺序进行排序
92
94
 
@@ -178,6 +180,7 @@ export class TGzzdMainResponse implements IGzzdMainResponse {
178
180
  wlzfDone: number = 0;
179
181
  gzzdFrom: number = 0;
180
182
  fromUserSize: number = 0;
183
+ acnoType: number = 0;
181
184
  fromGzjgQueuesBy: number = 0; // 工资结构按照Y中的顺序进行排序
182
185
  taskPara: string = "";
183
186
  listBill: IGzzdBillResponse[] = [];
@@ -58,7 +58,7 @@ export interface IHznjRwqxResponse {
58
58
  rwqxMemo: string;
59
59
  //#虚拟字段
60
60
  /**收样单类型 */
61
- fromDataType: number;
61
+ fromDataType: string;
62
62
  /**样品名称 */
63
63
  fromK8kmKmmc: string;
64
64
 
@@ -132,7 +132,7 @@ export class THznjRwqxResponse implements IHznjRwqxResponse {
132
132
  rwqxMemo: string = "";
133
133
 
134
134
  /**收样单类型 */
135
- fromDataType: number = 0;
135
+ fromDataType: string = "";
136
136
  /**样品名称 */
137
137
  fromK8kmKmmc: string = "";
138
138