@ningboyz/apis 1.3.47 → 1.3.49

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.47",
3
+ "version": "1.3.49",
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.47",
20
+ "@ningboyz/types": "1.3.49",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -84,6 +84,11 @@ class MainRequest {
84
84
  setaccept(querys: IHzcbMainSetAcceptQuerys, params: object) {
85
85
  return this.httpRequest.post<THzcb.IHzcbMainResponse[]>("/gapi/hzcb/tmain/setaccept", querys, params);
86
86
  }
87
+
88
+ /**项目拷贝 */
89
+ cloneone(querys: IHzcbMainCloneOneQuerys) {
90
+ return this.httpRequest.post<THzcb.IHzcbMainResponse[]>("/gapi/hzcb/tmain/cloneone", querys, params);
91
+ }
87
92
  }
88
93
 
89
94
  export default MainRequest;
@@ -290,3 +290,14 @@ export class THzcbMainSetAcceptQuerys implements IHzcbMainSetAcceptQuerys {
290
290
  hzcbmain: number = -1;
291
291
  finished: number = -1;
292
292
  }
293
+
294
+ export interface IHzcbMainCloneOneQuerys {
295
+ /**年度 */
296
+ sourcend: number;
297
+ /**待拷贝项目ID */
298
+ hzcbmain: number;
299
+ }
300
+ export class THzcbMainCloneOneQuerys implements IHzcbMainCloneOneQuerys {
301
+ sourcend: number = -1;
302
+ hzcbmain: number = -1;
303
+ }