@ningboyz/apis 1.6.95 → 1.6.97
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.6.
|
|
3
|
+
"version": "1.6.97",
|
|
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.6.
|
|
20
|
+
"@ningboyz/types": "1.6.97",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/core/user.ts
CHANGED
|
@@ -50,7 +50,8 @@ import {
|
|
|
50
50
|
ICoreUserUpdatedbBatchQuerys,
|
|
51
51
|
ICoreUserListDeptdbQuerys,
|
|
52
52
|
ICoreUserGet4MobileQuerys,
|
|
53
|
-
ICoreUserUpdateDeviceOnQuerys,
|
|
53
|
+
ICoreUserUpdateDeviceOnQuerys,
|
|
54
|
+
ICoreUserUpdateIgnoreOnQuerys
|
|
54
55
|
} from "./types";
|
|
55
56
|
|
|
56
57
|
class UserRequest {
|
|
@@ -647,6 +648,11 @@ class UserRequest {
|
|
|
647
648
|
updateIgnoreOn(querys: ICoreUserUpdateIgnoreOnQuerys, params: object) {
|
|
648
649
|
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/ignoreon/updatedb", querys, params);
|
|
649
650
|
}
|
|
651
|
+
|
|
652
|
+
//获取内测用户
|
|
653
|
+
get4asinside(querys: IEmptyQuerys, params: object) {
|
|
654
|
+
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/asinside", querys, params);
|
|
655
|
+
}
|
|
650
656
|
}
|
|
651
657
|
|
|
652
658
|
export default UserRequest;
|
package/packages/hznj/type.ts
CHANGED
|
@@ -227,6 +227,14 @@ export interface IHznjXmjjCheckdbQuerys {}
|
|
|
227
227
|
|
|
228
228
|
export class THznjXmjjCheckdbQuerys implements IHznjXmjjCheckdbQuerys {}
|
|
229
229
|
|
|
230
|
+
export interface IHznjXmjjUploaddbQuerys {
|
|
231
|
+
sourcend: number;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export class THznjXmjjUploaddbQuerys implements IHznjXmjjUploaddbQuerys {
|
|
235
|
+
sourcend: number = -1;
|
|
236
|
+
}
|
|
237
|
+
|
|
230
238
|
export interface IHznjXmjjInsertdbQuerys {
|
|
231
239
|
sourcend: number;
|
|
232
240
|
}
|
package/packages/hznj/xmsy.ts
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
IHznjXmsySelectdbQuerys,
|
|
12
12
|
IHznjXmsyUpdatedbQuerys,
|
|
13
13
|
THznjXmjjCheckdbQuerys,
|
|
14
|
-
THznjXmjjSelectm2mxQuerys
|
|
14
|
+
THznjXmjjSelectm2mxQuerys, THznjXmjjUploaddbQuerys
|
|
15
15
|
} from "./type";
|
|
16
16
|
|
|
17
17
|
class XmsyRequest {
|
|
@@ -62,6 +62,11 @@ class XmsyRequest {
|
|
|
62
62
|
checkdb(querys: THznjXmjjCheckdbQuerys, params: object) {
|
|
63
63
|
return this.httpRequest.post<TJapz.IJapzItemResponse[]>("/gapi/hznj/txmjj/checkdb", querys, params);
|
|
64
64
|
}
|
|
65
|
+
|
|
66
|
+
//导入项目收样
|
|
67
|
+
uploaddb(querys: THznjXmjjUploaddbQuerys, params: object) {
|
|
68
|
+
return this.httpRequest.post<THznj.IHznjXmsyResponse[]>("/gapi/hznj/txmsy/uploaddb", querys, params);
|
|
69
|
+
}
|
|
65
70
|
}
|
|
66
71
|
|
|
67
72
|
export default XmsyRequest;
|
package/packages/yzht/types.ts
CHANGED
|
@@ -11,6 +11,7 @@ export interface IYzhtMainSelectdbQuerys {
|
|
|
11
11
|
lockonly: number;
|
|
12
12
|
lockmyoa: number;
|
|
13
13
|
datahide: number;
|
|
14
|
+
withhzcb: number;
|
|
14
15
|
withcard: number;
|
|
15
16
|
withroom: number;
|
|
16
17
|
withd2dw: number;
|
|
@@ -34,6 +35,7 @@ export class TYzhtMainSelectdbQuerys implements IYzhtMainSelectdbQuerys {
|
|
|
34
35
|
lockonly: number = -1;
|
|
35
36
|
lockmyoa: number = -1;
|
|
36
37
|
datahide: number = -1;
|
|
38
|
+
withhzcb: number = -1;
|
|
37
39
|
withcard: number = -1;
|
|
38
40
|
withroom: number = -1;
|
|
39
41
|
withd2dw: number = -1;
|
|
@@ -113,9 +115,9 @@ export class TYzhtGlfdSelectfdQuerys implements IYzhtGlfdSelectfdQuerys {
|
|
|
113
115
|
unitmain: number = -1;
|
|
114
116
|
}
|
|
115
117
|
|
|
116
|
-
export interface IYzhtBillUpdated8Querys {}
|
|
118
|
+
export interface IYzhtBillUpdated8Querys { }
|
|
117
119
|
|
|
118
|
-
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys {}
|
|
120
|
+
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys { }
|
|
119
121
|
|
|
120
122
|
export interface IYzhtMainSelectd9Querys {
|
|
121
123
|
hzcbmain: number;
|