@be-link/cs-cli-nodejs 0.0.94 → 0.0.96
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":";;;AAIA,IAAiB,WAAW,
|
|
1
|
+
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":";;;AAIA,IAAiB,WAAW,CAuK3B;AAvKD,WAAiB,WAAW;IA0H1B,IAAiB,QAAQ,CAsBxB;IAtBD,WAAiB,QAAQ;QAqBvB,CAAC;QAAA,EAAE,CAAA;IACL,CAAC,EAtBgB,QAAQ,GAAR,oBAAQ,KAAR,oBAAQ,QAsBxB;AAuBH,CAAC,EAvKgB,WAAW,2BAAX,WAAW,QAuK3B"}
|
|
@@ -122,6 +122,8 @@ export declare namespace ShuttleBusSupplier {
|
|
|
122
122
|
}
|
|
123
123
|
interface GetProductAssociatedShuttleSupplierList {
|
|
124
124
|
itemId: string;
|
|
125
|
+
page: number;
|
|
126
|
+
pageSize: number;
|
|
125
127
|
}
|
|
126
128
|
interface BindShuttleBus {
|
|
127
129
|
itemId: string;
|
|
@@ -157,6 +159,7 @@ export declare namespace ShuttleBusSupplier {
|
|
|
157
159
|
}
|
|
158
160
|
interface QueryShuttleBusRoute {
|
|
159
161
|
data: (DTO.ShuttleBusRouteInfo & {
|
|
162
|
+
isBind: boolean;
|
|
160
163
|
supplierName?: string;
|
|
161
164
|
})[];
|
|
162
165
|
total: number;
|
|
@@ -171,12 +174,15 @@ export declare namespace ShuttleBusSupplier {
|
|
|
171
174
|
interface UpsertShuttleBusPickupPoint {
|
|
172
175
|
id: string;
|
|
173
176
|
}
|
|
174
|
-
type GetProductAssociatedShuttleSupplierList =
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
177
|
+
type GetProductAssociatedShuttleSupplierList = {
|
|
178
|
+
data: (DTO.ItemShuttleBusRouteRelation & {
|
|
179
|
+
departureCity: string;
|
|
180
|
+
supplierName: string;
|
|
181
|
+
isLimitStock: boolean;
|
|
182
|
+
validDates: number[];
|
|
183
|
+
})[];
|
|
184
|
+
total: number;
|
|
185
|
+
};
|
|
180
186
|
}
|
|
181
187
|
interface Controller {
|
|
182
188
|
/** 查询班车供应商列表 */
|