@be-link/cs-cli-nodejs 0.0.93 → 0.0.95
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.
|
@@ -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;
|
|
@@ -156,7 +158,10 @@ export declare namespace ShuttleBusSupplier {
|
|
|
156
158
|
id: string;
|
|
157
159
|
}
|
|
158
160
|
interface QueryShuttleBusRoute {
|
|
159
|
-
data: DTO.ShuttleBusRouteInfo
|
|
161
|
+
data: (DTO.ShuttleBusRouteInfo & {
|
|
162
|
+
isBind: boolean;
|
|
163
|
+
supplierName?: string;
|
|
164
|
+
})[];
|
|
160
165
|
total: number;
|
|
161
166
|
}
|
|
162
167
|
interface QueryShuttleBusRouteWithItemId {
|
|
@@ -169,12 +174,15 @@ export declare namespace ShuttleBusSupplier {
|
|
|
169
174
|
interface UpsertShuttleBusPickupPoint {
|
|
170
175
|
id: string;
|
|
171
176
|
}
|
|
172
|
-
type GetProductAssociatedShuttleSupplierList =
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
177
|
+
type GetProductAssociatedShuttleSupplierList = {
|
|
178
|
+
data: (DTO.ItemShuttleBusRouteRelation & {
|
|
179
|
+
departureCity: string;
|
|
180
|
+
supplierName: string;
|
|
181
|
+
isLimitStock: boolean;
|
|
182
|
+
validDates: number[];
|
|
183
|
+
})[];
|
|
184
|
+
total: number;
|
|
185
|
+
};
|
|
178
186
|
}
|
|
179
187
|
interface Controller {
|
|
180
188
|
/** 查询班车供应商列表 */
|