@ningboyz/apis 1.5.33 → 1.5.35

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.5.33",
3
+ "version": "1.5.35",
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.5.33",
20
+ "@ningboyz/types": "1.5.35",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -930,3 +930,7 @@ export class TCoreDeptDeptPathResetdpQuerys implements ICoreDeptDeptPathResetdpQ
930
930
 
931
931
  export interface ICoreSysmenuWldypageSelectdbQuerys {}
932
932
  export class TCoreSysmenuWldypageSelectdbQuerys implements ICoreSysmenuWldypageSelectdbQuerys {}
933
+
934
+
935
+ export interface ICoreUserQueuesByQuerys{}
936
+ export class TCoreUserQueuesByQuerys implements ICoreUserQueuesByQuerys{};
@@ -1,7 +1,7 @@
1
1
  import { TCore, TWlzf, TWtui } from "@ningboyz/types";
2
2
  import _ from "lodash";
3
3
  import type { HttpRequest } from "../axios";
4
- import {IEmptyQuerys, IParams} from "../type";
4
+ import { IEmptyQuerys, IParams } from "../type";
5
5
  import {
6
6
  ICoreDel4deptQuerys,
7
7
  ICoreDel4laidQuerys,
@@ -39,7 +39,8 @@ import {
39
39
  ICoreUserVerifydbAuthcodeQuerys,
40
40
  ICoreUserVerifydbDingdingQuerys,
41
41
  ICoreUserSelectdbWithflowParams,
42
- ICoreUserUpdatedbTouchurlQuerys
42
+ ICoreUserUpdatedbTouchurlQuerys,
43
+ ICoreUserQueuesByQuerys
43
44
  } from "./types";
44
45
 
45
46
  class UserRequest {
@@ -539,15 +540,33 @@ class UserRequest {
539
540
  return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/formerly", querys, params);
540
541
  }
541
542
 
542
- // 获取用户最近签名
543
+ /**
544
+ * 获取用户最近签名
545
+ * @param querys
546
+ * @returns
547
+ */
543
548
  get4last(querys: IEmptyQuerys) {
544
549
  return this.httpRequest.post<TCore.IPathResponse[]>("/core/tuser/touchurl/get4last", querys, undefined);
545
550
  }
546
551
 
547
- // 更新用户签名
552
+ /**
553
+ * 更新用户签名
554
+ * @param querys
555
+ * @returns
556
+ */
548
557
  updatedbTouchurl(querys: ICoreUserUpdatedbTouchurlQuerys) {
549
558
  return this.httpRequest.post<string>("/core/tuser/touchurl/updatedb", querys, undefined);
550
559
  }
560
+
561
+ /**
562
+ * 用户排序
563
+ * @param querys
564
+ * @param params
565
+ * @returns
566
+ */
567
+ queuesby(querys: ICoreUserQueuesByQuerys, params: object) {
568
+ return this.httpRequest.post<string>("/core/tuser/queuesby", querys, params);
569
+ }
551
570
  }
552
571
 
553
572
  export default UserRequest;