@ningboyz/apis 1.2.170 → 1.2.172

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.2.170",
3
+ "version": "1.2.172",
4
4
  "private": false,
5
5
  "description": "宁波甬政请求库",
6
6
  "author": "nbyt-syq",
@@ -17,7 +17,7 @@
17
17
  "registry": "https://registry.npmjs.org/"
18
18
  },
19
19
  "dependencies": {
20
- "@ningboyz/types": "1.2.170",
20
+ "@ningboyz/types": "1.2.172",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -119,11 +119,23 @@ export class THznkBaseDeletedbQuerys implements IHznkBaseDeletedbQuerys {
119
119
  export interface IHznkMainSelectdbQuerys {
120
120
  sourcend: number;
121
121
  withflow: number;
122
+ /** 是否锁定 */
123
+ lockdata: number;
124
+ /**项目需要根据哪类data进行筛选 */
125
+ datatype: number;
126
+ /** 修改时传data的dataIndx */
127
+ exceptid: number;
122
128
  }
123
129
 
124
130
  export class THznkMainSelectdbQuerys implements IHznkMainSelectdbQuerys {
125
131
  sourcend: number = -1;
126
132
  withflow: number = -1;
133
+ /** 是否锁定 */
134
+ lockdata: number = -1;
135
+ /**项目需要根据哪类data进行筛选 */
136
+ datatype: number = -1;
137
+ /** 修改时传data的dataIndx */
138
+ exceptid: number = -1;
127
139
  }
128
140
 
129
141
  export interface IHznkMainFinishedQuerys {