@be-link/cs-cli-nodejs 0.0.46 → 0.0.48
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.
|
@@ -4,7 +4,7 @@ declare class ServiceVenueService extends BaseService implements ServiceVenue.Co
|
|
|
4
4
|
prefixUrl: string;
|
|
5
5
|
createServiceVenue(request: ServiceVenue.Request.ICreateServiceVenue): Promise<ServiceVenue.Response.ICreateServiceVenueRes>;
|
|
6
6
|
getRoomTypeInfoByVenueId(request: ServiceVenue.Request.IGetRoomTypeInfo): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
7
|
-
queryServiceVenueList(request: ServiceVenue.Request.IQueryServiceVenueList): Promise<ServiceVenue.Response.IQueryServiceVenueListRes
|
|
7
|
+
queryServiceVenueList(request: ServiceVenue.Request.IQueryServiceVenueList): Promise<ServiceVenue.Response.IQueryServiceVenueListRes>;
|
|
8
8
|
saveRoomTypeInfo(request: ServiceVenue.Request.ISaveRoomTypeInfo): Promise<boolean>;
|
|
9
9
|
updateServiceVenue(request: ServiceVenue.Request.IUpdateServiceVenue): Promise<boolean>;
|
|
10
10
|
getServiceVenueInfo(request: ServiceVenue.Request.IGetServiceVenueInfo): Promise<ServiceVenue.Response.IGetServiceVenueInfoRes>;
|
|
@@ -126,18 +126,25 @@ export declare namespace ServiceVenue {
|
|
|
126
126
|
import CommonDescriptionItem = ServiceVenue.DTO.CommonDescriptionItem;
|
|
127
127
|
/** 查询套餐列表返回 */
|
|
128
128
|
interface IQueryServiceVenueListRes {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
129
|
+
total: number;
|
|
130
|
+
data: {
|
|
131
|
+
/** 门店id */
|
|
132
|
+
id: string;
|
|
133
|
+
/** 门店名称 */
|
|
134
|
+
name: string;
|
|
135
|
+
/** 门店地址 */
|
|
136
|
+
address: string;
|
|
137
|
+
/** 状态 */
|
|
138
|
+
status: string;
|
|
139
|
+
/** 星级 */
|
|
140
|
+
starLevel: number;
|
|
141
|
+
/** 钻级 */
|
|
142
|
+
diamondLevel: number;
|
|
143
|
+
/** 电话 */
|
|
144
|
+
phone: string;
|
|
145
|
+
/** 联系人 */
|
|
146
|
+
contactName: string;
|
|
147
|
+
}[];
|
|
141
148
|
}
|
|
142
149
|
/** 创建门店 */
|
|
143
150
|
interface ICreateServiceVenueRes {
|
|
@@ -250,7 +257,7 @@ export declare namespace ServiceVenue {
|
|
|
250
257
|
}
|
|
251
258
|
interface Controller {
|
|
252
259
|
/** 获取门店列表 */
|
|
253
|
-
queryServiceVenueList(request: Request.IQueryServiceVenueList): Promise<Response.IQueryServiceVenueListRes
|
|
260
|
+
queryServiceVenueList(request: Request.IQueryServiceVenueList): Promise<Response.IQueryServiceVenueListRes>;
|
|
254
261
|
/** 创建门店 */
|
|
255
262
|
createServiceVenue(request: Request.ICreateServiceVenue): Promise<Response.ICreateServiceVenueRes>;
|
|
256
263
|
/** 更新门店信息 */
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -10,9 +10,9 @@ export interface QueryBlockDataMap {
|
|
|
10
10
|
/** 酒店商品 */
|
|
11
11
|
hotelItemInfo: IHotelItemInfo;
|
|
12
12
|
/** 基础套餐 */
|
|
13
|
-
combo: IItemCombo;
|
|
13
|
+
combo: IItemCombo[];
|
|
14
14
|
/** 基础套餐快捷方式 */
|
|
15
|
-
comboShortcut: IItemComboShortcut;
|
|
15
|
+
comboShortcut: IItemComboShortcut[];
|
|
16
16
|
/** 商品销售描述 */
|
|
17
17
|
salesDescription: IItemSalesDescription;
|
|
18
18
|
}
|