@ningboyz/apis 1.4.135 → 1.4.137
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 +2 -2
- package/packages/hznj/type.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.137",
|
|
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.
|
|
20
|
+
"@ningboyz/types": "1.4.137",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/hznj/type.ts
CHANGED
|
@@ -149,12 +149,15 @@ export interface IHznjXmjjSelectdbQuerys {
|
|
|
149
149
|
sourcend: number;
|
|
150
150
|
withflow: number;
|
|
151
151
|
useronly: number;
|
|
152
|
+
/**是否取出样品信息 */
|
|
153
|
+
showitem: number;
|
|
152
154
|
}
|
|
153
155
|
|
|
154
156
|
export class THznjXmjjSelectdbQuerys implements IHznjXmjjSelectdbQuerys {
|
|
155
157
|
sourcend: number = -1;
|
|
156
158
|
withflow: number = 0;
|
|
157
159
|
useronly: number = -1;
|
|
160
|
+
showitem: number = -1;
|
|
158
161
|
}
|
|
159
162
|
|
|
160
163
|
export interface IHznjXmjjFinishedQuerys {
|
|
@@ -435,12 +438,15 @@ export interface IHznjZblrSelectdbQuerys {
|
|
|
435
438
|
sourcend: number;
|
|
436
439
|
withflow: number;
|
|
437
440
|
useronly: number;
|
|
441
|
+
/**是否关联样品信息 */
|
|
442
|
+
showitem: number;
|
|
438
443
|
}
|
|
439
444
|
|
|
440
445
|
export class THznjZblrSelectdbQuerys implements IHznjZblrSelectdbQuerys {
|
|
441
446
|
sourcend: number = -1;
|
|
442
447
|
withflow: number = 0;
|
|
443
448
|
useronly: number = -1;
|
|
449
|
+
showitem: number = -1;
|
|
444
450
|
}
|
|
445
451
|
|
|
446
452
|
export interface IHznjZblrFinishedQuerys {
|
|
@@ -626,12 +632,15 @@ export interface IHznjZblySelectdbQuerys {
|
|
|
626
632
|
sourcend: number;
|
|
627
633
|
withflow: number;
|
|
628
634
|
useronly: number;
|
|
635
|
+
/**是否关联样品信息 */
|
|
636
|
+
showitem: number;
|
|
629
637
|
}
|
|
630
638
|
|
|
631
639
|
export class THznjZblySelectdbQuerys implements IHznjZblySelectdbQuerys {
|
|
632
640
|
sourcend: number = -1;
|
|
633
641
|
withflow: number = 0;
|
|
634
642
|
useronly: number = -1;
|
|
643
|
+
showitem: number = 0;
|
|
635
644
|
}
|
|
636
645
|
|
|
637
646
|
export interface IHznjZblyFinishedQuerys {
|