@ningboyz/apis 1.4.82 → 1.4.84

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.82",
3
+ "version": "1.4.84",
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.82",
20
+ "@ningboyz/types": "1.4.84",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -1,7 +1,7 @@
1
1
  import { TNoti } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
3
  import { IEmptyQuerys } from "../type";
4
- import { INotiMainAuditd2WithscczQuerys, INotiMainDetaildbQuerys, INotiMainDetaildbWithscczQuerys, INotiMainFinishedQuerys, INotiMainFinishedWithscczQuerys, INotiMainGet4NotiQuerys, INotiMainInsertdb1Querys, INotiMainReadplusQuerys, INotiMainSelectdbQuerys, INotiMainSelectdbWithscczQuerys, INotiMainUpdatedbWithscczQuerys } from "./types";
4
+ import { INotiMainAuditd2WithscczQuerys, INotiMainDetaildbQuerys, INotiMainDetaildbWithscczQuerys, INotiMainFinishedQuerys, INotiMainFinishedWithscczQuerys, INotiMainGet4NotiQuerys, INotiMainInsertdb1Querys, INotiMainReadplusQuerys, INotiMainSelectdbQuerys, INotiMainSelectdbWithscczQuerys } from "./types";
5
5
 
6
6
  class ParaRequest {
7
7
  private httpRequest: HttpRequest;
@@ -100,16 +100,6 @@ class ParaRequest {
100
100
  return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/withsccz/selectdb", querys, params);
101
101
  }
102
102
 
103
- /**
104
- * 修改收文或督办详情
105
- * @param querys
106
- * @param params
107
- * @returns
108
- */
109
- updatedbwithsccz(querys: INotiMainUpdatedbWithscczQuerys, params: object) {
110
- return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/withsccz/updatedb", querys,params);
111
- }
112
-
113
103
  /**
114
104
  * 获取收文或督办详情
115
105
  * @param querys
@@ -121,7 +111,7 @@ class ParaRequest {
121
111
  }
122
112
 
123
113
  /**
124
- * 审核收文或督办
114
+ * 办公室审核收文或督办
125
115
  * @param querys
126
116
  * @param params
127
117
  * @returns
@@ -131,7 +121,7 @@ class ParaRequest {
131
121
  }
132
122
 
133
123
  /**
134
- * 撤销审核收文或督办
124
+ * 办公室撤销审核收文或督办
135
125
  * @param querys
136
126
  * @param params
137
127
  * @returns
@@ -141,7 +131,7 @@ class ParaRequest {
141
131
  }
142
132
 
143
133
  /**
144
- * 审核收文或督办
134
+ * 主要领导审核收文或督办
145
135
  * @param querys
146
136
  * @param params
147
137
  * @returns
@@ -150,6 +140,16 @@ class ParaRequest {
150
140
  return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/withsccz/auditd2", querys, params);
151
141
  }
152
142
 
143
+ /**
144
+ * 分管领导审核收文或督办
145
+ * @param querys
146
+ * @param params
147
+ * @returns
148
+ */
149
+ auditd3withsccz(querys: INotiMainAuditd2WithscczQuerys, params: object) {
150
+ return this.httpRequest.post<TNoti.INotiMainResponse[]>("/noti/tmain/withsccz/auditd3", querys, params);
151
+ }
152
+
153
153
  /**
154
154
  * 获取收文或督办已办
155
155
  * @param querys
@@ -94,16 +94,6 @@ export class TNotiMainSelectdbWithscczQuerys implements INotiMainSelectdbWithscc
94
94
  queuesby: string = "";
95
95
  }
96
96
 
97
- export interface INotiMainUpdatedbWithscczQuerys {
98
- datahide: number;
99
- flowval2: number;
100
- }
101
-
102
- export class TNotiMainUpdatedbWithscczQuerys implements INotiMainUpdatedbWithscczQuerys {
103
- datahide: number = -1;
104
- flowval2: number = -1;
105
- }
106
-
107
97
  export interface INotiMainDetaildbWithscczQuerys {
108
98
  notimain: number;
109
99
  }
@@ -128,6 +118,7 @@ export interface INotiMainFinishedWithscczQuerys {
128
118
  syspartc: number;
129
119
  sourcend: number;
130
120
  voidonly: number;
121
+ withlock: number;
131
122
  queuesby: string;
132
123
  }
133
124
 
@@ -135,5 +126,6 @@ export class TNotiMainFinishedWithscczQuerys implements INotiMainFinishedWithscc
135
126
  syspartc: number = -1;
136
127
  sourcend: number = -1;
137
128
  voidonly: number = -1;
129
+ withlock: number = -1;
138
130
  queuesby: string = "";
139
131
  }