@ningboyz/types 1.3.131 → 1.3.133

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.3.131",
4
+ "version": "1.3.133",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -45,6 +45,7 @@ export interface IVaryMainResponse {
45
45
  varyCode: string;
46
46
  varyName: string;
47
47
  varyUses: string;
48
+ varyText: string;
48
49
  varyMemo: string;
49
50
  dContact: string;
50
51
  valueOld: number;
@@ -121,6 +122,7 @@ export class TVaryMainResponse implements IVaryMainResponse {
121
122
  varyCode: string = "";
122
123
  varyName: string = "";
123
124
  varyUses: string = "";
125
+ varyText: string = "";
124
126
  varyMemo: string = "";
125
127
  valueOld: number = 0;
126
128
  valueNew: number = 0;
@@ -150,7 +152,6 @@ export class TVaryMainResponse implements IVaryMainResponse {
150
152
  listBill: TVary.IVaryBillResponse[] = [];
151
153
  listFrom: THznk.IHznkMainResponse[] = [];
152
154
 
153
-
154
155
  constructor(data: Partial<IVaryMainResponse> = {}) {
155
156
  if (data) {
156
157
  _.merge(this, _.pick(data, Object.keys(this)));
@@ -1,6 +1,8 @@
1
1
  export interface IWtuiTodoResponseWithPara {
2
2
  todoName: string;
3
3
  renameTo: string;
4
+ module: string;
5
+ moduleName: string;
4
6
  tab: string;
5
7
  searchType: string;
6
8
  toPath: string;
@@ -18,6 +20,8 @@ export interface IWtuiTodoResponseWithPara {
18
20
  export class TWtuiTodoResponseWithPara implements IWtuiTodoResponseWithPara {
19
21
  todoName: string = "";
20
22
  renameTo: string = "";
23
+ module: string = "";
24
+ moduleName: string = "";
21
25
  tab: string = "";
22
26
  searchType: string = "";
23
27
  toPath: string = "";