@ningboyz/apis 1.7.8 → 1.7.9

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.7.8",
3
+ "version": "1.7.9",
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.7.8",
20
+ "@ningboyz/types": "1.7.9",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -916,12 +916,18 @@ export class TCoreUserWorkStatUpdatedbQuerys implements ICoreUserWorkStatUpdated
916
916
  }
917
917
 
918
918
  export interface ICoreUserPassInsertdbQuerys {
919
+ }
920
+
921
+ export class TCoreUserPassInsertdbQuerys implements ICoreUserPassInsertdbQuerys {
922
+ }
923
+
924
+ export interface ICoreUserPassUpdatedbQuerys {
919
925
  workstat: number;
920
926
  workdate: number;
921
927
  workmemo: string;
922
928
  }
923
929
 
924
- export class TCoreUserPassInsertdbQuerys implements ICoreUserPassInsertdbQuerys {
930
+ export class TCoreUserPassUpdatedbQuerys implements ICoreUserPassUpdatedbQuerys {
925
931
  workstat: number = -1;
926
932
  workdate: number = -1;
927
933
  workmemo: string = "";
@@ -41,6 +41,7 @@ import {
41
41
  ICoreUserMobileidUpdatedbQuerys,
42
42
  ICoreUserPassDeletedbQuerys,
43
43
  ICoreUserPassInsertdbQuerys,
44
+ ICoreUserPassUpdatedbQuerys,
44
45
  ICoreUserPassUploaddbQuerys,
45
46
  ICoreUserQueuesByQuerys,
46
47
  ICoreUserScanloginQuerys,
@@ -709,6 +710,16 @@ class UserRequest {
709
710
  return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/userpass/insertdb", querys, params);
710
711
  }
711
712
 
713
+ /**
714
+ * 修改个人简历
715
+ * @param querys
716
+ * @param params
717
+ * @returns
718
+ */
719
+ userpassupdatedb(querys: ICoreUserPassUpdatedbQuerys, params: object) {
720
+ return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/userpass/updatedb", querys, params);
721
+ }
722
+
712
723
  /**
713
724
  * 删除个人简历
714
725
  * @param querys
@@ -81,12 +81,10 @@ export class TVaryMainExecuted4UserQuerys implements IVaryMainExecuted4UserQuery
81
81
 
82
82
  export interface IVaryMainCanceled4UserQuerys {
83
83
  entityid: string;
84
- menuuuid: string;
85
84
  }
86
85
 
87
86
  export class TVaryMainCanceled4UserQuerys implements IVaryMainCanceled4UserQuerys {
88
87
  entityid: string = "";
89
- menuuuid: string = "";
90
88
  }
91
89
 
92
90
  export interface IVaryMainInsertdbQuerys {