@be-link/pos-cli-nodejs 1.0.163 → 1.0.164
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/package.json +1 -1
- package/types.d.ts +10 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -191,6 +191,16 @@ export interface IPositiveItemInfo {
|
|
|
191
191
|
domesticTourOperator: string;
|
|
192
192
|
/** 联系人 */
|
|
193
193
|
tourContactInfo: string;
|
|
194
|
+
/** 地接社联系人姓名 */
|
|
195
|
+
tourContactName: string;
|
|
196
|
+
/** 地接社联系人电话 */
|
|
197
|
+
tourContactPhone: string;
|
|
198
|
+
/** 地接社公司地址 */
|
|
199
|
+
tourContactAddress: string;
|
|
200
|
+
/** 有无购物活动[ 1 - 有;0 - 无 ] */
|
|
201
|
+
hasShopping: number;
|
|
202
|
+
/** 有无另行付费旅游项目[ 1 - 有;0 - 无 ] */
|
|
203
|
+
hasActivity: number;
|
|
194
204
|
/** 产品特色 */
|
|
195
205
|
featuredTags: string[];
|
|
196
206
|
/** 门店id */
|