@ningboyz/types 1.2.40 → 1.2.42

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.40",
4
+ "version": "1.2.42",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -37,6 +37,27 @@ export interface IGamsItemResponse {
37
37
  itemMemo: string;
38
38
  multiVal: number;
39
39
  itemPara: string;
40
+
41
+ /**
42
+ * 额度总额
43
+ */
44
+ allMoney: number;
45
+ /**
46
+ * 事前占用
47
+ */
48
+ unFormal: number;
49
+ /**
50
+ * 事后占用
51
+ */
52
+ onFormal: number;
53
+ /**
54
+ * 报销支出
55
+ */
56
+ outMoney: number;
57
+ /**
58
+ * 额度结余
59
+ */
60
+ nowMoney: number;
40
61
  }
41
62
 
42
63
  export class TGamsItemResponse implements IGamsItemResponse {
@@ -79,4 +100,10 @@ export class TGamsItemResponse implements IGamsItemResponse {
79
100
  multiVal: number = 0;
80
101
  /** 参数约定 */
81
102
  itemPara: string = "";
103
+
104
+ allMoney: number = 0;
105
+ unFormal: number = 0;
106
+ onFormal: number = 0;
107
+ outMoney: number = 0;
108
+ nowMoney: number = 0;
82
109
  }
@@ -83,6 +83,7 @@ export interface IPzptCnfgResponse {
83
83
  listType:TCore.IDictResponse[]
84
84
  cnfgFormText:string
85
85
  cnfgPara:string
86
+ deptText:string
86
87
  }
87
88
 
88
89
  export class TPzptCnfgResponse implements IPzptCnfgResponse {
@@ -166,4 +167,5 @@ export class TPzptCnfgResponse implements IPzptCnfgResponse {
166
167
  listType:TCore.IDictResponse[] = []
167
168
  cnfgFormText:string = ""
168
169
  cnfgPara:string = ""
170
+ deptText:string = ""
169
171
  }