@ningboyz/apis 1.4.147 → 1.4.149

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.4.147",
3
+ "version": "1.4.149",
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.4.147",
20
+ "@ningboyz/types": "1.4.149",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -202,6 +202,14 @@ export class THznjXmjjSelectmxQuerys implements IHznjXmjjSelectmxQuerys {
202
202
  notiindx: number = -1;
203
203
  }
204
204
 
205
+ export interface IHznjXmjjSelectm2Querys {
206
+ sourcend: number;
207
+ }
208
+
209
+ export class THznjXmjjSelectm2Querys implements IHznjXmjjSelectm2Querys {
210
+ sourcend: number = -1;
211
+ }
212
+
205
213
  export interface IHznjXmjjInsertdbQuerys {
206
214
  sourcend: number;
207
215
  }
@@ -2,6 +2,7 @@
2
2
  import { THznj } from "@ningboyz/types";
3
3
  import { HttpRequest } from "../axios";
4
4
  import {
5
+ IHznjXmjjSelectm2Querys,
5
6
  IHznjXmjjSelectmxQuerys,
6
7
  IHznjXmsyDeletedbQuerys,
7
8
  IHznjXmsyDetailQuerys,
@@ -47,6 +48,10 @@ class XmsyRequest {
47
48
  selectmx(querys: IHznjXmjjSelectmxQuerys) {
48
49
  return this.httpRequest.post<THznj.IHznjXmsyResponse[]>("/gapi/hznj/txmjj/selectmx", querys, undefined);
49
50
  }
51
+
52
+ selectm2(querys: IHznjXmjjSelectm2Querys) {
53
+ return this.httpRequest.post<THznj.IHznjXmsyResponse[]>("/gapi/hznj/txmjj/selectm2", querys, undefined);
54
+ }
50
55
  }
51
56
 
52
57
  export default XmsyRequest;
@@ -9,7 +9,8 @@ import {
9
9
  IHznkMainSelectglQuerys,
10
10
  IHznkMainSelectrwQuerys,
11
11
  IHznkMainSelectysQuerys,
12
- IHznkMainUpdatedbQuerys
12
+ IHznkMainUpdatedbQuerys,
13
+ IHznkMainCloneOneQuerys
13
14
  } from "./type";
14
15
 
15
16
  class MainRequest {
@@ -52,6 +53,8 @@ class MainRequest {
52
53
  selectrw(querys: IHznkMainSelectrwQuerys, params: object) {
53
54
  return this.httpRequest.post<THznk.IHznkMainRwzbResponse[]>("/gapi/hznk/tmain/selectrw", querys, params);
54
55
  }
56
+ cloneone(querys: IHznkMainCloneOneQuerys) {
57
+ return this.httpRequest.post<THznk.IHznkMainResponse[]>("/gapi/hznk/tmain/cloneone", querys, undefined);
58
+ }
55
59
  }
56
-
57
60
  export default MainRequest;
@@ -211,6 +211,14 @@ export class THznkBaseCanceldbQuerys implements IHznkBaseCanceldbQuerys {
211
211
  sourcend: number = -1;
212
212
  }
213
213
 
214
+ export interface IHznkMainCloneOneQuerys {
215
+ yzhtmain: number;
216
+ }
217
+
218
+ export class THznkMainCloneOneQuerys implements IHznkMainCloneOneQuerys {
219
+ yzhtmain: number = -1;
220
+ }
221
+
214
222
  //#main
215
223
  export interface IHznkMainSelectdbQuerys {
216
224
  sourcend: number;
@@ -222,6 +230,8 @@ export interface IHznkMainSelectdbQuerys {
222
230
  /** 修改时传data的dataIndx */
223
231
  exceptid: number;
224
232
  useronly: number;
233
+ /**是否显示datahide=1的单据 */
234
+ datahide: number;
225
235
  }
226
236
 
227
237
  export class THznkMainSelectdbQuerys implements IHznkMainSelectdbQuerys {
@@ -234,6 +244,7 @@ export class THznkMainSelectdbQuerys implements IHznkMainSelectdbQuerys {
234
244
  /** 修改时传data的dataIndx */
235
245
  exceptid: number = -1;
236
246
  useronly: number = -1;
247
+ datahide: number = -1;
237
248
  }
238
249
 
239
250
  export interface IHznkMainSelectglQuerys {