@be-link/tfs-cli-nodejs 0.0.9 → 0.0.11

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/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import BizError from './errors/BizError';
2
2
  import rescheduleService from './tfs/modules/reschedule/service';
3
- import TourismInfoService from './tfs/modules/tourismInfo/service';
3
+ import tourTeamService from './tfs/modules/tourTeam/service';
4
+ import tourGroupService from './tfs/modules/tourGroup/service';
5
+ import tourismInfoService from './tfs/modules/tourismInfo/service';
4
6
  /** 业务模块 */
5
- export { BizError, rescheduleService, TourismInfoService };
7
+ export { BizError, rescheduleService, tourTeamService, tourGroupService, tourismInfoService };
package/index.js CHANGED
@@ -3,11 +3,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.TourismInfoService = exports.rescheduleService = exports.BizError = void 0;
6
+ exports.tourismInfoService = exports.tourGroupService = exports.tourTeamService = exports.rescheduleService = exports.BizError = void 0;
7
7
  const BizError_1 = __importDefault(require("./errors/BizError"));
8
8
  exports.BizError = BizError_1.default;
9
9
  const service_1 = __importDefault(require("./tfs/modules/reschedule/service"));
10
10
  exports.rescheduleService = service_1.default;
11
- const service_2 = __importDefault(require("./tfs/modules/tourismInfo/service"));
12
- exports.TourismInfoService = service_2.default;
11
+ const service_2 = __importDefault(require("./tfs/modules/tourTeam/service"));
12
+ exports.tourTeamService = service_2.default;
13
+ const service_3 = __importDefault(require("./tfs/modules/tourGroup/service"));
14
+ exports.tourGroupService = service_3.default;
15
+ const service_4 = __importDefault(require("./tfs/modules/tourismInfo/service"));
16
+ exports.tourismInfoService = service_4.default;
13
17
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,iEAAwC;AAMtC,mBANK,kBAAQ,CAML;AALV,+EAAgE;AAM9D,4BANK,iBAAiB,CAML;AALnB,gFAAkE;AAMhE,6BANK,iBAAkB,CAML"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,iEAAwC;AAQtC,mBARK,kBAAQ,CAQL;AAPV,+EAAgE;AAQ9D,4BARK,iBAAiB,CAQL;AAPnB,6EAA4D;AAQ1D,0BARK,iBAAe,CAQL;AAPjB,8EAA8D;AAQ5D,2BARK,iBAAgB,CAQL;AAPlB,gFAAkE;AAQhE,6BARK,iBAAkB,CAQL"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/tfs-cli-nodejs",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "交易履约服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,7 @@
1
+ export declare namespace Constants {
2
+ const enum TourRelationTypeEnum {
3
+ TEAM_ORDER = "TEAM_ORDER",
4
+ GROUP_ORDER = "GROUP_ORDER",
5
+ GROUP_TEAM = "GROUP_TEAM"
6
+ }
7
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TourTypeEnum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TourTypeEnum.js","sourceRoot":"","sources":["../../../src/tfs/enums/TourTypeEnum.ts"],"names":[],"mappings":""}
@@ -31,7 +31,12 @@ export declare namespace Reschedule {
31
31
  isCanReschedule: boolean;
32
32
  }
33
33
  }
34
- namespace DTO {
34
+ namespace Constants {
35
+ const enum RelationType {
36
+ GROUP_TEAM = "GROUP_TEAM",
37
+ GROUP_ORDER = "GROUP_ORDER",
38
+ TEAM_ORDER = "TEAM_ORDER"
39
+ }
35
40
  }
36
41
  interface Controller {
37
42
  /** 更改订单出行日期 */
@@ -0,0 +1,14 @@
1
+ import BaseService from '../baseService';
2
+ import { TourGroup } from "./type";
3
+ declare class TourGroupService extends BaseService implements TourGroup.Controller {
4
+ protected prefixUrl: string;
5
+ queryOrderIdListByGroupId(param: TourGroup.Request.queryOrderIdListByGroupIdParam): Promise<TourGroup.Response.queryOrderIdListByGroupIdRes>;
6
+ deleteGroup(param: TourGroup.Request.deleteGroupParam): Promise<void>;
7
+ queryGroupInfo(request: TourGroup.Request.queryGroupInfoParam): Promise<TourGroup.Response.queryGroupInfoRes>;
8
+ queryGroupInfoListByItemIdAndFulfillAt(param: TourGroup.Request.queryOrderIdListByItemIdAndFulfillAtParam): Promise<TourGroup.Response.queryOrderIdListByItemIdAndFulfillAtRes>;
9
+ updateGroup(param: TourGroup.Request.updateGroupParam): Promise<void>;
10
+ batchCreateGroup(request: TourGroup.Request.batchCreateGroupParam): Promise<TourGroup.Response.batchCreateGroupRes>;
11
+ batchUpdateGroup(request: TourGroup.Request.batchUpdateGroupParam[]): Promise<void>;
12
+ }
13
+ declare const tourGroupService: TourGroupService;
14
+ export default tourGroupService;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const http_1 = require("../../http");
7
+ const baseService_1 = __importDefault(require("../baseService"));
8
+ class TourGroupService extends baseService_1.default {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.prefixUrl = '/tour-group';
12
+ }
13
+ queryOrderIdListByGroupId(param) {
14
+ return (0, http_1.callApi)(this.getApiUrl(this.queryOrderIdListByGroupId), param);
15
+ }
16
+ deleteGroup(param) {
17
+ return (0, http_1.callApi)(this.getApiUrl(this.deleteGroup), param);
18
+ }
19
+ queryGroupInfo(request) {
20
+ return (0, http_1.callApi)(this.getApiUrl(this.queryGroupInfo), request);
21
+ }
22
+ queryGroupInfoListByItemIdAndFulfillAt(param) {
23
+ return (0, http_1.callApi)(this.getApiUrl(this.queryGroupInfoListByItemIdAndFulfillAt), param);
24
+ }
25
+ updateGroup(param) {
26
+ return (0, http_1.callApi)(this.getApiUrl(this.updateGroup), param);
27
+ }
28
+ batchCreateGroup(request) {
29
+ return (0, http_1.callApi)(this.getApiUrl(this.batchCreateGroup), request);
30
+ }
31
+ batchUpdateGroup(request) {
32
+ return (0, http_1.callApi)(this.getApiUrl(this.batchUpdateGroup), request);
33
+ }
34
+ }
35
+ const tourGroupService = new TourGroupService();
36
+ exports.default = tourGroupService;
37
+ //# sourceMappingURL=service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/tfs/modules/tourGroup/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,gBAAiB,SAAQ,qBAAW;IAA1C;;QACY,cAAS,GAAW,aAAa,CAAA;IAiC7C,CAAC;IA/BC,yBAAyB,CACvB,KAAuD;QAEvD,OAAO,IAAA,cAAO,EAAoD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,yBAAyB,CAAC,EAAE,KAAK,CAAC,CAAA;IAC1H,CAAC;IAED,WAAW,CAAC,KAAyC;QACnD,OAAO,IAAA,cAAO,EAAsC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC,CAAA;IAC9F,CAAC;IAED,cAAc,CAAC,OAA8C;QAC3D,OAAO,IAAA,cAAO,EAAyC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC,CAAA;IACtG,CAAC;IAED,sCAAsC,CAAC,KAAkE;QACvG,OAAO,IAAA,cAAO,EAAiE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,sCAAsC,CAAC,EAAE,KAAK,CAAC,CAAA;IACpJ,CAAC;IAED,WAAW,CAAC,KAAyC;QACnD,OAAO,IAAA,cAAO,EAAsC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC,CAAA;IAC9F,CAAC;IAED,gBAAgB,CAAC,OAAgD;QAC/D,OAAO,IAAA,cAAO,EAA2C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,EAAE,OAAO,CAAC,CAAA;IAC1G,CAAC;IAED,gBAAgB,CAAC,OAAkD;QACjE,OAAO,IAAA,cAAO,EAA2C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,EAAE,OAAO,CAAC,CAAA;IAC1G,CAAC;CAGF;AAED,MAAM,gBAAgB,GAAG,IAAI,gBAAgB,EAAE,CAAA;AAE/C,kBAAe,gBAAgB,CAAA"}
@@ -0,0 +1,96 @@
1
+ export declare namespace TourGroup {
2
+ namespace Request {
3
+ interface queryOrderIdListByGroupIdParam {
4
+ groupId: string;
5
+ }
6
+ interface queryOrderIdListByItemIdAndFulfillAtParam {
7
+ itemId: string;
8
+ fulfillAt: number;
9
+ }
10
+ interface deleteGroupParam {
11
+ id: string;
12
+ }
13
+ interface updateGroupParam {
14
+ id: string;
15
+ limitCount: number;
16
+ }
17
+ interface queryGroupInfoParam {
18
+ itemId: string;
19
+ fulfillAt: number;
20
+ }
21
+ interface batchCreateGroupParam {
22
+ limitCount: number;
23
+ groupCount: number;
24
+ }
25
+ interface batchUpdateGroupParam {
26
+ groupId: string;
27
+ teamIdList: string[];
28
+ orderIdList: string[];
29
+ }
30
+ }
31
+ namespace Response {
32
+ interface queryOrderIdListByGroupIdRes {
33
+ orderIdList: string[];
34
+ }
35
+ interface batchCreateGroupRes {
36
+ groupIdList: string[];
37
+ }
38
+ interface queryOrderIdListByItemIdAndFulfillAtRes {
39
+ groupInfoList: {
40
+ id: string;
41
+ orderList: string[];
42
+ }[];
43
+ }
44
+ interface queryGroupInfoRes {
45
+ unSplit: {
46
+ teamList: {
47
+ id: string;
48
+ orderList: {
49
+ id: string;
50
+ tourists: {
51
+ name: string;
52
+ mobile: string;
53
+ };
54
+ }[];
55
+ };
56
+ orderList: {
57
+ id: string;
58
+ tourists: {
59
+ name: string;
60
+ mobile: string;
61
+ };
62
+ }[];
63
+ }[];
64
+ split: {
65
+ group: {
66
+ teamList: {
67
+ id: string;
68
+ orderList: {
69
+ id: string;
70
+ tourists: {
71
+ name: string;
72
+ mobile: string;
73
+ };
74
+ }[];
75
+ }[];
76
+ orderList: {
77
+ id: string;
78
+ tourists: {
79
+ name: string;
80
+ mobile: string;
81
+ };
82
+ }[];
83
+ }[];
84
+ };
85
+ }
86
+ }
87
+ interface Controller {
88
+ queryOrderIdListByGroupId(param: Request.queryOrderIdListByGroupIdParam): Promise<Response.queryOrderIdListByGroupIdRes>;
89
+ queryGroupInfoListByItemIdAndFulfillAt(param: Request.queryOrderIdListByItemIdAndFulfillAtParam): Promise<Response.queryOrderIdListByItemIdAndFulfillAtRes>;
90
+ deleteGroup(param: Request.deleteGroupParam): Promise<void>;
91
+ updateGroup(param: Request.updateGroupParam): Promise<void>;
92
+ queryGroupInfo(request: Request.queryGroupInfoParam): Promise<Response.queryGroupInfoRes>;
93
+ batchCreateGroup(request: Request.batchCreateGroupParam): Promise<Response.batchCreateGroupRes>;
94
+ batchUpdateGroup(request: Request.batchUpdateGroupParam[]): Promise<void>;
95
+ }
96
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../src/tfs/modules/tourGroup/type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,14 @@
1
+ import BaseService from '../baseService';
2
+ import { TourTeam } from "./type";
3
+ declare class TourTeamService extends BaseService implements TourTeam.Controller {
4
+ protected prefixUrl: string;
5
+ queryTeamInfo(request: TourTeam.Request.queryTeamInfoParam): Promise<TourTeam.Response.queryTeamInfoRes>;
6
+ createTourTeam(param: TourTeam.Request.createTourTeamParam): Promise<void>;
7
+ deleteTourTeam(param: TourTeam.Request.deleteTourTeamParam): Promise<void>;
8
+ queryTeamInfoByOrderId(param: TourTeam.Request.queryTeamInfoByOrderIdParam): Promise<TourTeam.Response.queryTeamInfoByOrderIdRes>;
9
+ setTeamLeader(param: TourTeam.Request.setTeamLeaderParam): Promise<void>;
10
+ updateTourTeam(param: TourTeam.Request.updateTourTeamParam): Promise<void>;
11
+ upsertOrderToTeam(param: TourTeam.Request.upsertOrderToTeamParam): Promise<void>;
12
+ }
13
+ declare const tourTeamService: TourTeamService;
14
+ export default tourTeamService;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const http_1 = require("../../http");
7
+ const baseService_1 = __importDefault(require("../baseService"));
8
+ class TourTeamService extends baseService_1.default {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.prefixUrl = '/tour-team';
12
+ }
13
+ queryTeamInfo(request) {
14
+ return (0, http_1.callApi)(this.getApiUrl(this.queryTeamInfo), request);
15
+ }
16
+ createTourTeam(param) {
17
+ return (0, http_1.callApi)(this.getApiUrl(this.createTourTeam), param);
18
+ }
19
+ deleteTourTeam(param) {
20
+ return (0, http_1.callApi)(this.getApiUrl(this.deleteTourTeam), param);
21
+ }
22
+ queryTeamInfoByOrderId(param) {
23
+ return (0, http_1.callApi)(this.getApiUrl(this.queryTeamInfoByOrderId), param);
24
+ }
25
+ setTeamLeader(param) {
26
+ return (0, http_1.callApi)(this.getApiUrl(this.setTeamLeader), param);
27
+ }
28
+ updateTourTeam(param) {
29
+ return (0, http_1.callApi)(this.getApiUrl(this.updateTourTeam), param);
30
+ }
31
+ upsertOrderToTeam(param) {
32
+ return (0, http_1.callApi)(this.getApiUrl(this.upsertOrderToTeam), param);
33
+ }
34
+ }
35
+ const tourTeamService = new TourTeamService();
36
+ exports.default = tourTeamService;
37
+ //# sourceMappingURL=service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/tfs/modules/tourTeam/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,eAAgB,SAAQ,qBAAW;IAAzC;;QACY,cAAS,GAAW,YAAY,CAAA;IA8B5C,CAAC;IA5BC,aAAa,CAAC,OAA4C;QACxD,OAAO,IAAA,cAAO,EAAuC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC,CAAA;IACnG,CAAC;IAED,cAAc,CAAC,KAA2C;QACxD,OAAO,IAAA,cAAO,EAAwC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,KAAK,CAAC,CAAA;IACnG,CAAC;IAED,cAAc,CAAC,KAA2C;QACxD,OAAO,IAAA,cAAO,EAAwC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,KAAK,CAAC,CAAA;IACnG,CAAC;IAED,sBAAsB,CAAC,KAAmD;QACxE,OAAO,IAAA,cAAO,EAAgD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,sBAAsB,CAAC,EAAE,KAAK,CAAC,CAAA;IACnH,CAAC;IAED,aAAa,CAAC,KAA0C;QACtD,OAAO,IAAA,cAAO,EAAuC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,EAAE,KAAK,CAAC,CAAA;IACjG,CAAC;IAED,cAAc,CAAC,KAA2C;QACxD,OAAO,IAAA,cAAO,EAAwC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,KAAK,CAAC,CAAA;IACnG,CAAC;IAED,iBAAiB,CAAC,KAA8C;QAC9D,OAAO,IAAA,cAAO,EAA2C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAAE,KAAK,CAAC,CAAA;IACzG,CAAC;CAEF;AAED,MAAM,eAAe,GAAG,IAAI,eAAe,EAAE,CAAA;AAE7C,kBAAe,eAAe,CAAA"}
@@ -0,0 +1,83 @@
1
+ export declare namespace TourTeam {
2
+ namespace Request {
3
+ interface queryTeamInfoParam {
4
+ itemId: string;
5
+ fulfillAt: number;
6
+ }
7
+ interface queryTeamInfoByOrderIdParam {
8
+ orderId: string;
9
+ }
10
+ interface updateTourTeamParam {
11
+ teamId: string;
12
+ orderIdList?: string[];
13
+ leaderInfo?: any;
14
+ }
15
+ interface createTourTeamParam {
16
+ orderIdList: string[];
17
+ leaderInfo: any;
18
+ itemId: string;
19
+ fulfillTime: number;
20
+ }
21
+ interface deleteTourTeamParam {
22
+ teamId: string;
23
+ orderId: string;
24
+ }
25
+ interface setTeamLeaderParam {
26
+ teamId: string;
27
+ leaderInfo: {
28
+ mobile: string;
29
+ name: string;
30
+ };
31
+ }
32
+ interface upsertOrderToTeamParam {
33
+ teamId?: string;
34
+ orderIdList: string[];
35
+ type: string;
36
+ leaderInfo?: {
37
+ mobile: string;
38
+ name: string;
39
+ };
40
+ itemId: string;
41
+ fulfillTime: number;
42
+ }
43
+ }
44
+ namespace Response {
45
+ interface queryTeamInfoRes {
46
+ teamList: {
47
+ id: string;
48
+ leaderInfo: {
49
+ mobile: string;
50
+ name: string;
51
+ };
52
+ orders: {
53
+ id: string;
54
+ contact: {
55
+ name: string;
56
+ mobile: string;
57
+ }[];
58
+ }[];
59
+ }[];
60
+ orderList: {
61
+ id: string;
62
+ contact: {
63
+ name: string;
64
+ mobile: string;
65
+ }[];
66
+ }[];
67
+ }
68
+ interface queryTeamInfoByOrderIdRes {
69
+ id: string;
70
+ leaderInfo: any;
71
+ orders: string[];
72
+ }
73
+ }
74
+ interface Controller {
75
+ queryTeamInfo(param: Request.queryTeamInfoParam): Promise<Response.queryTeamInfoRes>;
76
+ queryTeamInfoByOrderId(param: Request.queryTeamInfoByOrderIdParam): Promise<Response.queryTeamInfoByOrderIdRes>;
77
+ updateTourTeam(param: Request.updateTourTeamParam): Promise<void>;
78
+ createTourTeam(param: Request.createTourTeamParam): Promise<void>;
79
+ upsertOrderToTeam(param: Request.upsertOrderToTeamParam): Promise<void>;
80
+ deleteTourTeam(param: Request.deleteTourTeamParam): Promise<void>;
81
+ setTeamLeader(param: Request.setTeamLeaderParam): Promise<void>;
82
+ }
83
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../src/tfs/modules/tourTeam/type.ts"],"names":[],"mappings":""}
package/types.d.ts CHANGED
@@ -3,19 +3,10 @@ export declare namespace Fulfill {
3
3
  * 常量类型
4
4
  */
5
5
  namespace Constants {
6
- /**
7
- * 流水类型
8
- * @enum
9
- */
10
- const enum OperationEnum {
11
- /**
12
- * 增加
13
- */
14
- ADD = "ADD",
15
- /**
16
- * 扣减
17
- */
18
- SUBTRACT = "SUBTRACT"
6
+ const enum TourRelationTypeEnum {
7
+ TEAM_ORDER = "TEAM_ORDER",
8
+ GROUP_ORDER = "GROUP_ORDER",
9
+ GROUP_TEAM = "GROUP_TEAM"
19
10
  }
20
11
  }
21
12
  namespace Entity {
@@ -80,5 +71,37 @@ export declare namespace Fulfill {
80
71
  /** 行程单已读 */
81
72
  travelFormReadList: string[];
82
73
  }
74
+ interface TourTeam {
75
+ /** id */
76
+ id: string;
77
+ /** 创建时间 */
78
+ createdAt: number;
79
+ /** 更新时间 */
80
+ updatedAt: number;
81
+ /** 删除时间 */
82
+ deletedAt: number;
83
+ /** 领队信息 */
84
+ leaderInfo: {};
85
+ /** 商品id */
86
+ itemId: string;
87
+ /** 出团时间 */
88
+ fulfillAt: number;
89
+ }
90
+ interface TourGroup {
91
+ /** id */
92
+ id: string;
93
+ /** 创建时间 */
94
+ createdAt: number;
95
+ /** 更新时间 */
96
+ updatedAt: number;
97
+ /** 删除时间 */
98
+ deletedAt: number;
99
+ /** 限制人数 */
100
+ limitCount: number;
101
+ /** 商品id */
102
+ itemId: string;
103
+ /** 出团时间 */
104
+ fulfillAt: number;
105
+ }
83
106
  }
84
107
  }