@ningboyz/apis 1.3.96 → 1.3.98

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.3.96",
3
+ "version": "1.3.98",
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.3.96",
20
+ "@ningboyz/types": "1.3.98",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -719,6 +719,7 @@ export interface ICardDataSelectdbQuerys {
719
719
  lockonly: number;
720
720
  /**筛选能否被关联*/
721
721
  todolock: number;
722
+ cardmain: number;
722
723
  }
723
724
 
724
725
  export class TCardDataSelectdbQuerys implements ICardDataSelectdbQuerys {
@@ -727,6 +728,7 @@ export class TCardDataSelectdbQuerys implements ICardDataSelectdbQuerys {
727
728
  withflow: number = -1;
728
729
  lockonly: number = -1;
729
730
  todolock: number = -1;
731
+ cardmain: number = -1;
730
732
  }
731
733
 
732
734
  /**
@@ -1,7 +1,16 @@
1
1
  //#任务通知
2
2
  import { THznj } from "@ningboyz/types";
3
3
  import { HttpRequest } from "../axios";
4
- import { IHznjNotiDeletedbQuerys, IHznjNotiDetailQuerys, IHznjNotiFinishedQuerys, IHznjNotiInsertdbQuerys, IHznjNotiSelectdbQuerys, IHznjNotiUpdatedbQuerys } from "./type";
4
+ import {
5
+ IHznjNotiDeletedbQuerys,
6
+ IHznjNotiDetailQuerys,
7
+ IHznjNotiFinishedQuerys,
8
+ IHznjNotiFinishmxQuerys,
9
+ IHznjNotiInsertdbQuerys,
10
+ IHznjNotiSelectdbQuerys,
11
+ IHznjNotiSelectmxQuerys,
12
+ IHznjNotiUpdatedbQuerys
13
+ } from "./type";
5
14
 
6
15
  class NotiRequest {
7
16
  private httpRequest: HttpRequest;
@@ -32,6 +41,14 @@ class NotiRequest {
32
41
  finished(querys: IHznjNotiFinishedQuerys) {
33
42
  return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/finished", querys, undefined);
34
43
  }
44
+
45
+ selectmx(querys: IHznjNotiSelectmxQuerys) {
46
+ return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/selectmx", querys, undefined);
47
+ }
48
+
49
+ finishmx(querys: IHznjNotiFinishmxQuerys) {
50
+ return this.httpRequest.post<THznj.IHznjNotiResponse[]>("/gapi/hznj/tnoti/finishmx", querys, undefined);
51
+ }
35
52
  }
36
53
 
37
54
  export default NotiRequest;
@@ -55,19 +55,43 @@ export class THznjBaseDeletedbQuerys implements IHznjBaseDeletedbQuerys {
55
55
  export interface IHznjXmsySelectdbQuerys {
56
56
  sourcend: number;
57
57
  withflow: number;
58
+ /**是否剔除任务取消关联单据 1是 0否 */
59
+ lockrwqx: number;
60
+ /**修改时 任务取消的ID */
61
+ excerwqx: number;
62
+ /**是否剔除到账确认关联单据 1是 0否 */
63
+ lockdzqr: number;
64
+ /**修改时 到账确认的ID */
65
+ excedzqr: number;
58
66
  }
59
67
 
60
68
  export class THznjXmsySelectdbQuerys implements IHznjXmsySelectdbQuerys {
61
69
  sourcend: number = -1;
62
70
  withflow: number = 0;
71
+ lockrwqx: number = 0;
72
+ excerwqx: number = 0;
73
+ lockdzqr: number = 0;
74
+ excedzqr: number = 0;
63
75
  }
64
76
 
65
77
  export interface IHznjXmsyFinishedQuerys {
66
78
  sourcend: number;
79
+ /**是否剔除任务取消关联单据 1是 0否 */
80
+ lockrwqx: number;
81
+ /**修改时 任务取消的ID */
82
+ excerwqx: number;
83
+ /**是否剔除到账确认关联单据 1是 0否 */
84
+ lockdzqr: number;
85
+ /**修改时 到账确认的ID */
86
+ excedzqr: number;
67
87
  }
68
88
 
69
89
  export class THznjXmsyFinishedQuerys implements IHznjXmsyFinishedQuerys {
70
90
  sourcend: number = -1;
91
+ lockrwqx: number = 0;
92
+ excerwqx: number = 0;
93
+ lockdzqr: number = 0;
94
+ excedzqr: number = 0;
71
95
  }
72
96
 
73
97
  export interface IHznjXmsyInsertdbQuerys {
@@ -123,7 +147,6 @@ export class THznjXmjjFinishedQuerys implements IHznjXmjjFinishedQuerys {
123
147
  sourcend: number = -1;
124
148
  }
125
149
 
126
-
127
150
  export interface IHznjXmjjSelectmxQuerys {
128
151
  sourcend: number;
129
152
  k0kmkmid: number;
@@ -291,6 +314,16 @@ export class THznjNotiSelectdbQuerys implements IHznjNotiSelectdbQuerys {
291
314
  withflow: number = 0;
292
315
  }
293
316
 
317
+ export interface IHznjNotiSelectmxQuerys {
318
+ sourcend: number;
319
+ withflow: number;
320
+ }
321
+
322
+ export class THznjNotiSelectmxQuerys implements IHznjNotiSelectmxQuerys {
323
+ sourcend: number = -1;
324
+ withflow: number = 0;
325
+ }
326
+
294
327
  export interface IHznjNotiFinishedQuerys {
295
328
  sourcend: number;
296
329
  }
@@ -299,6 +332,14 @@ export class THznjNotiFinishedQuerys implements IHznjNotiFinishedQuerys {
299
332
  sourcend: number = -1;
300
333
  }
301
334
 
335
+ export interface IHznjNotiFinishmxQuerys {
336
+ sourcend: number;
337
+ }
338
+
339
+ export class THznjNotiFinishmxQuerys implements IHznjNotiFinishmxQuerys {
340
+ sourcend: number = -1;
341
+ }
342
+
302
343
  export interface IHznjNotiInsertdbQuerys {
303
344
  sourcend: number;
304
345
  }