@ningboyz/types 1.7.116 → 1.7.118

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.116",
4
+ "version": "1.7.118",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -62,6 +62,8 @@ export interface IGztbMainResponse {
62
62
 
63
63
  /** 启用特殊人员 */
64
64
  usesFromType: number;
65
+ /** 工资填报状态 */
66
+ gztbStat: number;
65
67
 
66
68
  listTask: ITaskMainResponse[];
67
69
  listYSDW: IUnitResponse[];
@@ -123,7 +125,7 @@ export class TGztbMainResponse implements IGztbMainResponse {
123
125
  endedCnt: number = 0;
124
126
 
125
127
  usesFromType: number = 0;
126
-
128
+ gztbStat: number = 0;
127
129
  listPath: TCore.IPathResponse[] = [];
128
130
  listTask: ITaskMainResponse[] = [];
129
131
  listYSDW: IUnitResponse[] = [];
@@ -78,6 +78,8 @@ export interface IWzpzK8kmResponse {
78
78
  canEmpty: number; // 是否可以为空 0代表为必填,1代表非必填
79
79
  limitCnt: number; // 限制数量
80
80
  rankText: string;
81
+ /** 参数 */
82
+ k8kmPara: string;
81
83
  // 供应商
82
84
  k8kmSccs: string;
83
85
  listDict: TCore.IDictResponse[];
@@ -164,6 +166,7 @@ export class TWzpzK8kmResponse implements IWzpzK8kmResponse {
164
166
  canEmpty: number = 0;
165
167
  limitCnt: number = 0;
166
168
  rankText: string = "";
169
+ k8kmPara: string = "";
167
170
  listRank: TCore.IDictResponse[] = [];
168
171
  listDict: TCore.IDictResponse[] = [];
169
172