@be-link/cs-cli-nodejs 0.0.92 → 0.0.94
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.
|
@@ -88,6 +88,7 @@ export declare namespace ShuttleBusSupplier {
|
|
|
88
88
|
}
|
|
89
89
|
interface QueryShuttleBusRoute {
|
|
90
90
|
supplierId?: string;
|
|
91
|
+
supplierName?: string;
|
|
91
92
|
departureCity?: string;
|
|
92
93
|
departureAddress?: string;
|
|
93
94
|
page: number;
|
|
@@ -95,6 +96,7 @@ export declare namespace ShuttleBusSupplier {
|
|
|
95
96
|
}
|
|
96
97
|
interface QueryShuttleBusRouteWithItemId {
|
|
97
98
|
itemId: string;
|
|
99
|
+
supplierName?: string;
|
|
98
100
|
departureCity?: string;
|
|
99
101
|
departureAddress?: string;
|
|
100
102
|
page: number;
|
|
@@ -154,19 +156,27 @@ export declare namespace ShuttleBusSupplier {
|
|
|
154
156
|
id: string;
|
|
155
157
|
}
|
|
156
158
|
interface QueryShuttleBusRoute {
|
|
157
|
-
data: DTO.ShuttleBusRouteInfo
|
|
159
|
+
data: (DTO.ShuttleBusRouteInfo & {
|
|
160
|
+
supplierName?: string;
|
|
161
|
+
})[];
|
|
158
162
|
total: number;
|
|
159
163
|
}
|
|
160
164
|
interface QueryShuttleBusRouteWithItemId {
|
|
161
165
|
data: (DTO.ShuttleBusRouteInfo & {
|
|
162
166
|
isBind: boolean;
|
|
167
|
+
supplierName?: string;
|
|
163
168
|
})[];
|
|
164
169
|
total: number;
|
|
165
170
|
}
|
|
166
171
|
interface UpsertShuttleBusPickupPoint {
|
|
167
172
|
id: string;
|
|
168
173
|
}
|
|
169
|
-
type GetProductAssociatedShuttleSupplierList = DTO.ItemShuttleBusRouteRelation
|
|
174
|
+
type GetProductAssociatedShuttleSupplierList = DTO.ItemShuttleBusRouteRelation & {
|
|
175
|
+
departureCity: string;
|
|
176
|
+
supplierName: string;
|
|
177
|
+
isLimitStock: boolean;
|
|
178
|
+
validDates: number[];
|
|
179
|
+
}[];
|
|
170
180
|
}
|
|
171
181
|
interface Controller {
|
|
172
182
|
/** 查询班车供应商列表 */
|