@be-link/cs-cli-nodejs 0.0.50 → 0.0.52
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/cs/modules/bizTag/service.d.ts +0 -0
- package/cs/modules/bizTag/service.js +2 -0
- package/cs/modules/bizTag/service.js.map +1 -0
- package/cs/modules/bizTag/type.d.ts +35 -0
- package/cs/modules/bizTag/type.js +3 -0
- package/cs/modules/bizTag/type.js.map +1 -0
- package/cs/modules/itemQuery/byItem/service.d.ts +3 -2
- package/cs/modules/itemQuery/byItem/service.js +5 -2
- package/cs/modules/itemQuery/byItem/service.js.map +1 -1
- package/cs/modules/itemQuery/byItem/type.d.ts +75 -1
- package/cs/modules/itemQuery/byItem/type.js +8 -0
- package/cs/modules/itemQuery/byItem/type.js.map +1 -1
- package/cs/modules/itemQuery/index.d.ts +1 -0
- package/cs/modules/serviceVenue/service.d.ts +3 -1
- package/cs/modules/serviceVenue/service.js +6 -0
- package/cs/modules/serviceVenue/service.js.map +1 -1
- package/cs/modules/serviceVenue/types.d.ts +14 -1
- package/package.json +1 -1
- package/types.d.ts +7 -0
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/bizTag/service.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as CommodityEnums from 'vitality-meta/enums/commodity';
|
|
2
|
+
export declare namespace BizTag {
|
|
3
|
+
interface DTO {
|
|
4
|
+
id: string;
|
|
5
|
+
itemId: string;
|
|
6
|
+
status: CommodityEnums.CommonStatus;
|
|
7
|
+
type: CommodityEnums.CommodityBizTagType;
|
|
8
|
+
relatedItemNum: number;
|
|
9
|
+
}
|
|
10
|
+
namespace Request {
|
|
11
|
+
interface ICreate {
|
|
12
|
+
name: string;
|
|
13
|
+
tagType: CommodityEnums.CommodityBizTagType;
|
|
14
|
+
}
|
|
15
|
+
interface IUpdate {
|
|
16
|
+
tagId: string;
|
|
17
|
+
name: string;
|
|
18
|
+
}
|
|
19
|
+
interface IQueryTagList {
|
|
20
|
+
name: string;
|
|
21
|
+
tagType: CommodityEnums.CommodityBizTagType[];
|
|
22
|
+
createUser: string;
|
|
23
|
+
pageIndex: number;
|
|
24
|
+
pageSize: number;
|
|
25
|
+
}
|
|
26
|
+
interface IQueryTagListByItem {
|
|
27
|
+
itemId: string;
|
|
28
|
+
tagType: CommodityEnums.CommodityBizTagType;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
namespace Response {
|
|
32
|
+
interface IQueryTagList {
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../src/cs/modules/bizTag/type.ts"],"names":[],"mappings":""}
|
|
@@ -5,11 +5,12 @@
|
|
|
5
5
|
import BaseService from '../../baseService';
|
|
6
6
|
import { QueryByItem } from './type';
|
|
7
7
|
import * as GDto from '../../../../types';
|
|
8
|
-
declare class
|
|
8
|
+
declare class QueryByItemService extends BaseService implements QueryByItem.Controller {
|
|
9
9
|
prefixUrl: string;
|
|
10
10
|
get<K extends (keyof GDto.QueryBlockDataMap)[]>(request: QueryByItem.Request.IGet<K>): Promise<GDto.QueryDataRes<K>>;
|
|
11
11
|
mget<K extends (keyof GDto.QueryBlockDataMap)[]>(request: QueryByItem.Request.IMget<K>): Promise<GDto.QueryDataRes<K>[]>;
|
|
12
12
|
queryItemListByCategory<K extends (keyof GDto.QueryBlockDataMap)[]>(request: QueryByItem.Request.IQueryItemListByCategory<K>): Promise<GDto.QueryDataRes<K>[]>;
|
|
13
|
+
queryCenterForItem(request: QueryByItem.Request.QueryCenterForItem): Promise<QueryByItem.Response.QueryCenterForItem>;
|
|
13
14
|
}
|
|
14
|
-
declare const byItem:
|
|
15
|
+
declare const byItem: QueryByItemService;
|
|
15
16
|
export default byItem;
|
|
@@ -9,7 +9,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
const http_1 = require("../../../http");
|
|
11
11
|
const baseService_1 = __importDefault(require("../../baseService"));
|
|
12
|
-
class
|
|
12
|
+
class QueryByItemService extends baseService_1.default {
|
|
13
13
|
constructor() {
|
|
14
14
|
super(...arguments);
|
|
15
15
|
this.prefixUrl = '/item/query/by-item';
|
|
@@ -23,7 +23,10 @@ class QueryByItem extends baseService_1.default {
|
|
|
23
23
|
queryItemListByCategory(request) {
|
|
24
24
|
return (0, http_1.callApi)(this.getApiUrl(this.queryItemListByCategory), request);
|
|
25
25
|
}
|
|
26
|
+
queryCenterForItem(request) {
|
|
27
|
+
return (0, http_1.callApi)(this.getApiUrl(this.queryCenterForItem), request);
|
|
28
|
+
}
|
|
26
29
|
}
|
|
27
|
-
const byItem = new
|
|
30
|
+
const byItem = new QueryByItemService();
|
|
28
31
|
exports.default = byItem;
|
|
29
32
|
//# sourceMappingURL=service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/service.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;AAEH,wCAAuC;AACvC,oEAA2C;AAI3C,MAAM,
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/service.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;AAEH,wCAAuC;AACvC,oEAA2C;AAI3C,MAAM,kBAAmB,SAAQ,qBAAW;IAA5C;;QACE,cAAS,GAAW,qBAAqB,CAAA;IA+B3C,CAAC;IA7BC,GAAG,CACD,OAAoC;QAEpC,OAAO,IAAA,cAAO,EAAgC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,CAAA;IAClF,CAAC;IAED,IAAI,CACF,OAAqC;QAErC,OAAO,IAAA,cAAO,EAAiC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IACpF,CAAC;IAED,uBAAuB,CACrB,OAAwD;QAExD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,uBAAuB,CAAC,EAC5C,OAAO,CACR,CAAA;IACH,CAAC;IAED,kBAAkB,CAChB,OAA+C;QAE/C,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;CACF;AAED,MAAM,MAAM,GAAG,IAAI,kBAAkB,EAAE,CAAA;AAEvC,kBAAe,MAAM,CAAA"}
|
|
@@ -32,11 +32,85 @@ export declare namespace QueryByItem {
|
|
|
32
32
|
queryBlocks: K;
|
|
33
33
|
paging: IPaging;
|
|
34
34
|
}
|
|
35
|
+
interface QueryCenterForItem {
|
|
36
|
+
/** 搜索条件 */
|
|
37
|
+
condition?: {
|
|
38
|
+
/** 商品关键字 */
|
|
39
|
+
keyword?: string;
|
|
40
|
+
/** 商品维度条件 */
|
|
41
|
+
itemInfo?: {
|
|
42
|
+
/** 二级类目列表 */
|
|
43
|
+
categoryTwoList?: string[];
|
|
44
|
+
/** 商品特色 */
|
|
45
|
+
features?: string[];
|
|
46
|
+
/** 是否需要下架商品 */
|
|
47
|
+
needOffSale?: boolean;
|
|
48
|
+
isOnlyStaffCanSee?: boolean;
|
|
49
|
+
isPrivateInfo?: boolean;
|
|
50
|
+
idList?: string[];
|
|
51
|
+
minItemSalePrice?: number;
|
|
52
|
+
/** 每日可售卖的最大份数限制 */
|
|
53
|
+
isSetMaxSaleCountLimitPerDay?: boolean;
|
|
54
|
+
/** 是否会员商品 */
|
|
55
|
+
isMemberPrice?: boolean;
|
|
56
|
+
/** 适用城市列表 */
|
|
57
|
+
cityList?: string[];
|
|
58
|
+
};
|
|
59
|
+
/** 门店维度条件 */
|
|
60
|
+
storeInfo?: {
|
|
61
|
+
/** 门店位置 */
|
|
62
|
+
location?: {
|
|
63
|
+
/** 省份 */
|
|
64
|
+
province?: string;
|
|
65
|
+
/** 城市. 查询全部则不传 */
|
|
66
|
+
city?: string;
|
|
67
|
+
/** 行政区. 查询全部则不传 */
|
|
68
|
+
district?: string;
|
|
69
|
+
};
|
|
70
|
+
/** 相对人民广场的距离. eg. [[0, 50], [250, 300]] */
|
|
71
|
+
distance?: Array<number[]>;
|
|
72
|
+
/** 钻级 */
|
|
73
|
+
diamond?: number[];
|
|
74
|
+
/** 星级 */
|
|
75
|
+
star?: number[];
|
|
76
|
+
/** 门店设施 */
|
|
77
|
+
facilities?: string[];
|
|
78
|
+
/** 门店IdList */
|
|
79
|
+
idList?: string[];
|
|
80
|
+
};
|
|
81
|
+
/** 商品标签条件 */
|
|
82
|
+
itemTags?: number[];
|
|
83
|
+
/** 是否是会员价商品 */
|
|
84
|
+
isMemberPrice?: boolean;
|
|
85
|
+
};
|
|
86
|
+
/** 排序条件 */
|
|
87
|
+
sort?: {
|
|
88
|
+
/** 价格 */
|
|
89
|
+
price?: 'DESC' | 'ASC';
|
|
90
|
+
/** 售卖价 */
|
|
91
|
+
saleCount?: 'DESC' | 'ASC';
|
|
92
|
+
/** id */
|
|
93
|
+
id?: 'DESC' | 'ASC';
|
|
94
|
+
/** 农家乐 - 门店是否已合作 */
|
|
95
|
+
isStoreCollaborated?: 'DESC' | 'ASC';
|
|
96
|
+
};
|
|
97
|
+
/** 页码. 从0起始, 默认0 */
|
|
98
|
+
pageIndex?: number;
|
|
99
|
+
/** 页目条数. 默认10, 最大20 */
|
|
100
|
+
pageSize?: number;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
namespace Response {
|
|
104
|
+
interface QueryCenterForItem {
|
|
105
|
+
id: string;
|
|
106
|
+
isNewItem: boolean;
|
|
107
|
+
}
|
|
35
108
|
}
|
|
36
|
-
namespace Response { }
|
|
37
109
|
interface Controller {
|
|
38
110
|
get<K extends (keyof GDto.QueryBlockDataMap)[]>(request: Request.IGet<K>): Promise<GDto.QueryDataRes<K>>;
|
|
39
111
|
mget<K extends (keyof GDto.QueryBlockDataMap)[]>(request: Request.IMget<K>): Promise<GDto.QueryDataRes<K>[]>;
|
|
40
112
|
queryItemListByCategory<k extends (keyof GDto.QueryBlockDataMap)[]>(request: Request.IQueryItemListByCategory<k>): Promise<GDto.QueryDataRes<k>[]>;
|
|
113
|
+
/** 商品搜索大全 */
|
|
114
|
+
queryCenterForItem(request: Request.QueryCenterForItem): Promise<Response.QueryCenterForItem>;
|
|
41
115
|
}
|
|
42
116
|
}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QueryByItem = void 0;
|
|
4
|
+
var QueryByItem;
|
|
5
|
+
(function (QueryByItem) {
|
|
6
|
+
let Response;
|
|
7
|
+
(function (Response) {
|
|
8
|
+
[];
|
|
9
|
+
})(Response = QueryByItem.Response || (QueryByItem.Response = {}));
|
|
10
|
+
})(QueryByItem || (exports.QueryByItem = QueryByItem = {}));
|
|
3
11
|
//# sourceMappingURL=type.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":";;;AAGA,IAAiB,WAAW,CA6I3B;AA7ID,WAAiB,WAAW;IAoH1B,IAAiB,QAAQ,CAKxB;IALD,WAAiB,QAAQ;QAItB,EAAE,CAAA;IACL,CAAC,EALgB,QAAQ,GAAR,oBAAQ,KAAR,oBAAQ,QAKxB;AAoBH,CAAC,EA7IgB,WAAW,2BAAX,WAAW,QA6I3B"}
|
|
@@ -4,6 +4,7 @@ declare const itemQueryService: {
|
|
|
4
4
|
get<K extends (keyof import("../../../types").QueryBlockDataMap)[]>(request: import("./byItem/type").QueryByItem.Request.IGet<K>): Promise<import("../../../types").QueryDataRes<K>>;
|
|
5
5
|
mget<K_1 extends (keyof import("../../../types").QueryBlockDataMap)[]>(request: import("./byItem/type").QueryByItem.Request.IMget<K_1>): Promise<import("../../../types").QueryDataRes<K_1>[]>;
|
|
6
6
|
queryItemListByCategory<K_2 extends (keyof import("../../../types").QueryBlockDataMap)[]>(request: import("./byItem/type").QueryByItem.Request.IQueryItemListByCategory<K_2>): Promise<import("../../../types").QueryDataRes<K_2>[]>;
|
|
7
|
+
queryCenterForItem(request: import("./byItem/type").QueryByItem.Request.QueryCenterForItem): Promise<import("./byItem/type").QueryByItem.Response.QueryCenterForItem>;
|
|
7
8
|
isPublicEnv: boolean;
|
|
8
9
|
readonly natDevHost: "http://qgostaxv.cs.nmkh74o4.rlwzae9d.com:8090";
|
|
9
10
|
readonly natProdHost: "";
|
|
@@ -3,7 +3,9 @@ import { ServiceVenue } from './types';
|
|
|
3
3
|
declare class ServiceVenueService extends BaseService implements ServiceVenue.Controller {
|
|
4
4
|
prefixUrl: string;
|
|
5
5
|
createServiceVenue(request: ServiceVenue.Request.ICreateServiceVenue): Promise<ServiceVenue.Response.ICreateServiceVenueRes>;
|
|
6
|
-
getRoomTypeInfoByVenueId(request: ServiceVenue.Request.
|
|
6
|
+
getRoomTypeInfoByVenueId(request: ServiceVenue.Request.IGetRoomTypeInfoByVenueId): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
7
|
+
getRoomTypeInfoById(request: ServiceVenue.Request.IGetRoomTypeInfo): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes>;
|
|
8
|
+
mgetRoomTypeInfo(request: ServiceVenue.Request.IQueryRoomTypeInfo): Promise<ServiceVenue.Response.IGetRoomTypeInfoRes[]>;
|
|
7
9
|
queryServiceVenueList(request: ServiceVenue.Request.IQueryServiceVenueList): Promise<ServiceVenue.Response.IQueryServiceVenueListRes>;
|
|
8
10
|
saveRoomTypeInfo(request: ServiceVenue.Request.ISaveRoomTypeInfo): Promise<boolean>;
|
|
9
11
|
updateServiceVenue(request: ServiceVenue.Request.IUpdateServiceVenue): Promise<boolean>;
|
|
@@ -16,6 +16,12 @@ class ServiceVenueService extends baseService_1.default {
|
|
|
16
16
|
getRoomTypeInfoByVenueId(request) {
|
|
17
17
|
return (0, http_1.callApi)(this.getApiUrl(this.getRoomTypeInfoByVenueId), request);
|
|
18
18
|
}
|
|
19
|
+
getRoomTypeInfoById(request) {
|
|
20
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getRoomTypeInfoById), request);
|
|
21
|
+
}
|
|
22
|
+
mgetRoomTypeInfo(request) {
|
|
23
|
+
return (0, http_1.callApi)(this.getApiUrl(this.mgetRoomTypeInfo), request);
|
|
24
|
+
}
|
|
19
25
|
queryServiceVenueList(request) {
|
|
20
26
|
return (0, http_1.callApi)(this.getApiUrl(this.queryServiceVenueList), request);
|
|
21
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/serviceVenue/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,mBAAoB,SAAQ,qBAAW;IAA7C;;QACE,cAAS,GAAG,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/serviceVenue/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,mBAAoB,SAAQ,qBAAW;IAA7C;;QACE,cAAS,GAAG,gBAAgB,CAAA;IAmF9B,CAAC;IAlFC,kBAAkB,CAChB,OAAiD;QAEjD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;IAED,wBAAwB,CACtB,OAAuD;QAEvD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,wBAAwB,CAAC,EAC7C,OAAO,CACR,CAAA;IACH,CAAC;IAED,mBAAmB,CACjB,OAA8C;QAE9C,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,mBAAmB,CAAC,EACxC,OAAO,CACR,CAAA;IACH,CAAC;IAED,gBAAgB,CACd,OAAgD;QAEhD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,EACrC,OAAO,CACR,CAAA;IACH,CAAC;IAED,qBAAqB,CACnB,OAAoD;QAEpD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,qBAAqB,CAAC,EAC1C,OAAO,CACR,CAAA;IACH,CAAC;IAED,gBAAgB,CACd,OAA+C;QAE/C,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,EACrC,OAAO,CACR,CAAA;IACH,CAAC;IAED,kBAAkB,CAChB,OAAiD;QAEjD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,kBAAkB,CAAC,EACvC,OAAO,CACR,CAAA;IACH,CAAC;IAED,mBAAmB,CACjB,OAAkD;QAElD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,mBAAmB,CAAC,EACxC,OAAO,CACR,CAAA;IACH,CAAC;IAED,0BAA0B,CACxB,OAAuD;QAEvD,OAAO,IAAA,cAAO,EACZ,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,0BAA0B,CAAC,EAC/C,OAAO,CACR,CAAA;IACH,CAAC;CAGF;AAED,MAAM,mBAAmB,GAAG,IAAI,mBAAmB,EAAE,CAAA;AAErD,kBAAe,mBAAmB,CAAA"}
|
|
@@ -109,10 +109,19 @@ export declare namespace ServiceVenue {
|
|
|
109
109
|
};
|
|
110
110
|
}
|
|
111
111
|
/** 获取房型 */
|
|
112
|
+
interface IGetRoomTypeInfoByVenueId {
|
|
113
|
+
/** 门店id */
|
|
114
|
+
venueId: string;
|
|
115
|
+
}
|
|
116
|
+
/** 获取房型 */
|
|
112
117
|
interface IGetRoomTypeInfo {
|
|
113
118
|
/** 门店id */
|
|
114
119
|
id: string;
|
|
115
120
|
}
|
|
121
|
+
/** 获取房型 */
|
|
122
|
+
interface IQueryRoomTypeInfo {
|
|
123
|
+
ids: string[];
|
|
124
|
+
}
|
|
116
125
|
/** 创建门店 */
|
|
117
126
|
interface ISaveRoomTypeInfo {
|
|
118
127
|
id: string;
|
|
@@ -272,7 +281,11 @@ export declare namespace ServiceVenue {
|
|
|
272
281
|
/** 更新门店信息 */
|
|
273
282
|
updateServiceVenue(request: Request.IUpdateServiceVenue): Promise<boolean>;
|
|
274
283
|
/** 获取房型信息 */
|
|
275
|
-
getRoomTypeInfoByVenueId(request: Request.
|
|
284
|
+
getRoomTypeInfoByVenueId(request: Request.IGetRoomTypeInfoByVenueId): Promise<Response.IGetRoomTypeInfoRes[]>;
|
|
285
|
+
/** 获取房型信息 */
|
|
286
|
+
getRoomTypeInfoById(request: Request.IGetRoomTypeInfo): Promise<Response.IGetRoomTypeInfoRes>;
|
|
287
|
+
/** 获取房型信息 */
|
|
288
|
+
mgetRoomTypeInfo(request: Request.IQueryRoomTypeInfo): Promise<Response.IGetRoomTypeInfoRes[]>;
|
|
276
289
|
/** 编辑房型信息 */
|
|
277
290
|
saveRoomTypeInfo(request: Request.ISaveRoomTypeInfo): Promise<boolean>;
|
|
278
291
|
getServiceVenueInfo(request: Request.IGetServiceVenueInfo): Promise<Response.IGetServiceVenueInfoRes>;
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -199,6 +199,8 @@ export interface IItemCombo {
|
|
|
199
199
|
isOnlyDoubleQuantity: boolean;
|
|
200
200
|
/** 餐饮菜单图片 */
|
|
201
201
|
mealMenuPics: string[];
|
|
202
|
+
/** 是否展示娱乐信息 */
|
|
203
|
+
isCanShowEntertainmentInfo: boolean;
|
|
202
204
|
};
|
|
203
205
|
}
|
|
204
206
|
export interface IItemComboShortcut {
|
|
@@ -220,6 +222,11 @@ export interface IItemComboShortcut {
|
|
|
220
222
|
nightNum: number;
|
|
221
223
|
/** 套餐描述信息 */
|
|
222
224
|
description: DescriptionContentItem[];
|
|
225
|
+
/** 额外信息 */
|
|
226
|
+
extraInfo: {
|
|
227
|
+
/** 是否展示娱乐信息 */
|
|
228
|
+
isCanShowEntertainmentInfo: boolean;
|
|
229
|
+
};
|
|
223
230
|
}
|
|
224
231
|
export interface IItemComboStock {
|
|
225
232
|
id: string;
|