@ningboyz/types 1.2.91 → 1.2.93

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.2.91",
4
+ "version": "1.2.93",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -69,6 +69,10 @@ export const CONST_TABS_CONFIRM_TODO = "CONST_TABS_CONFIRM_TODO";
69
69
  * 已经确认业务
70
70
  */
71
71
  export const CONST_TABS_CONFIRM_PROC = "CONST_TABS_CONFIRM_PROC";
72
+ /**
73
+ * 确认中的所有业务
74
+ */
75
+ export const CONST_TABS_CONFIRM_ALL = "CONST_TABS_CONFIRM_ALL";
72
76
 
73
77
  /**
74
78
  * 网络支付 未支付
@@ -134,7 +138,8 @@ export type TabsStat =
134
138
  | typeof CONST_TABS_AUDIT_LOCK_ALL
135
139
  | typeof CONST_TABS_SXCX_ALL
136
140
  | typeof CONST_TABS_CONFIRM_PROC
137
- | typeof CONST_TABS_CONFIRM_TODO;
141
+ | typeof CONST_TABS_CONFIRM_TODO
142
+ | typeof CONST_TABS_CONFIRM_ALL;
138
143
 
139
144
  //============按钮名称===============
140
145
 
@@ -30,6 +30,8 @@ export interface IGamsCnfgResponse {
30
30
  cnfgName: string;
31
31
  cnfgMemo: string;
32
32
  unitText: string;
33
+ k0kmKmid: number;
34
+ k0kmKmmc: string;
33
35
 
34
36
  listUnit: IUnitResponse[];
35
37
  }
@@ -69,6 +71,9 @@ export class TGamsCnfgResponse implements IGamsCnfgResponse {
69
71
  /** 单位归属.文本 */
70
72
  unitText: string = "";
71
73
 
74
+ k0kmKmid: number = 0;
75
+ k0kmKmmc: string = "";
76
+
72
77
  /** 单位归属.列表 */
73
78
  listUnit: IUnitResponse[] = [];
74
79
  }
@@ -66,6 +66,25 @@ export interface IHznkDataResponse {
66
66
  hznkUses: string;
67
67
  /**备注说明 */
68
68
  hznkMemo: string;
69
+ /**联系人 */
70
+ wContact: string;
71
+ /**联系方式 */
72
+ dContact: string;
73
+
74
+ coverURL: string;
75
+ touchURL: string;
76
+ unitText: string;
77
+ sourceDW: string;
78
+
79
+ lastDate: number;
80
+ lastTime: number;
81
+ flowMain: number;
82
+ flowNode: number;
83
+ flowStat: number;
84
+ didFirst: number;
85
+ lastMemo: string;
86
+ userName: string;
87
+ userGUID: string;
69
88
 
70
89
  /**附件 */
71
90
  listPath: IPathResponse[];
@@ -124,6 +143,23 @@ export class THznkDataResponse implements IHznkDataResponse {
124
143
  hznkName: string = "";
125
144
  hznkUses: string = "";
126
145
  hznkMemo: string = "";
146
+ wContact: string = "";
147
+ dContact: string = "";
148
+
149
+ coverURL: string = "";
150
+ touchURL: string = "";
151
+ unitText: string = "";
152
+ sourceDW: string = "";
153
+
154
+ lastDate: number = 0;
155
+ lastTime: number = 0;
156
+ flowMain: number = 0;
157
+ flowNode: number = 0;
158
+ flowStat: number = 0;
159
+ didFirst: number = 0;
160
+ lastMemo: string = "";
161
+ userName: string = "";
162
+ userGUID: string = "";
127
163
 
128
164
  listPath: IPathResponse[] = [];
129
165
  listEach: IHznkDataEachResponse[] = [];