@gizone/rrs-client 4.2.9-alpha.657 → 4.2.9-alpha.659

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.
@@ -96,6 +96,66 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
96
96
  options: localVarRequestOptions,
97
97
  };
98
98
  }),
99
+ /**
100
+ *
101
+ * @summary 报账单导出
102
+ * @param {number} [parkId] 园区ID
103
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
104
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
105
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
106
+ * @param {string} [searchValue] 关键词
107
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
108
+ * @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
109
+ * @param {*} [options] Override http request option.
110
+ * @throws {RequiredError}
111
+ */
112
+ reimbursementBillExport: (parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, searchValue_1, reimbursementStatuses_1, isDraft_1, ...args_1) => __awaiter(this, [parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, searchValue_1, reimbursementStatuses_1, isDraft_1, ...args_1], void 0, function* (parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options = {}) {
113
+ const localVarPath = `/gizone/reimbursement-bill/export`;
114
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
115
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
116
+ let baseOptions;
117
+ if (configuration) {
118
+ baseOptions = configuration.baseOptions;
119
+ }
120
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
121
+ const localVarHeaderParameter = {};
122
+ const localVarQueryParameter = {};
123
+ // authentication tokenScheme required
124
+ // http bearer authentication required
125
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
126
+ if (parkId !== undefined) {
127
+ localVarQueryParameter['parkId'] = parkId;
128
+ }
129
+ if (billCreateTimeStart !== undefined) {
130
+ localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart instanceof Date) ?
131
+ billCreateTimeStart.toISOString() :
132
+ billCreateTimeStart;
133
+ }
134
+ if (billCreateTimeEnd !== undefined) {
135
+ localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd instanceof Date) ?
136
+ billCreateTimeEnd.toISOString() :
137
+ billCreateTimeEnd;
138
+ }
139
+ if (expenseSubjects) {
140
+ localVarQueryParameter['expenseSubjects'] = expenseSubjects;
141
+ }
142
+ if (searchValue !== undefined) {
143
+ localVarQueryParameter['searchValue'] = searchValue;
144
+ }
145
+ if (reimbursementStatuses) {
146
+ localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
147
+ }
148
+ if (isDraft !== undefined) {
149
+ localVarQueryParameter['isDraft'] = isDraft;
150
+ }
151
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
152
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
153
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
154
+ return {
155
+ url: toPathString(localVarUrlObj),
156
+ options: localVarRequestOptions,
157
+ };
158
+ }),
99
159
  /**
100
160
  *
101
161
  * @summary 查询报账单流转列表
@@ -164,13 +224,18 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
164
224
  /**
165
225
  * 查询报账单列表
166
226
  * @summary 查询报账单列表
167
- * @param {ReimbursementBillSearchDto} dto
227
+ * @param {number} [parkId] 园区ID
228
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
229
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
230
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
231
+ * @param {number} [page] 当前页
232
+ * @param {number} [pageSize] 每页条数
233
+ * @param {string} [searchValue] 关键词
234
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
168
235
  * @param {*} [options] Override http request option.
169
236
  * @throws {RequiredError}
170
237
  */
171
- reimbursementBillSelectList: (dto_1, ...args_1) => __awaiter(this, [dto_1, ...args_1], void 0, function* (dto, options = {}) {
172
- // verify required parameter 'dto' is not null or undefined
173
- assertParamExists('reimbursementBillSelectList', 'dto', dto);
238
+ reimbursementBillSelectList: (parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, page_1, pageSize_1, searchValue_1, reimbursementStatuses_1, ...args_1) => __awaiter(this, [parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, page_1, pageSize_1, searchValue_1, reimbursementStatuses_1, ...args_1], void 0, function* (parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options = {}) {
174
239
  const localVarPath = `/gizone/reimbursement-bill`;
175
240
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
176
241
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -184,10 +249,33 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
184
249
  // authentication tokenScheme required
185
250
  // http bearer authentication required
186
251
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
187
- if (dto !== undefined) {
188
- for (const [key, value] of Object.entries(dto)) {
189
- localVarQueryParameter[key] = value;
190
- }
252
+ if (parkId !== undefined) {
253
+ localVarQueryParameter['parkId'] = parkId;
254
+ }
255
+ if (billCreateTimeStart !== undefined) {
256
+ localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart instanceof Date) ?
257
+ billCreateTimeStart.toISOString() :
258
+ billCreateTimeStart;
259
+ }
260
+ if (billCreateTimeEnd !== undefined) {
261
+ localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd instanceof Date) ?
262
+ billCreateTimeEnd.toISOString() :
263
+ billCreateTimeEnd;
264
+ }
265
+ if (expenseSubjects) {
266
+ localVarQueryParameter['expenseSubjects'] = expenseSubjects;
267
+ }
268
+ if (page !== undefined) {
269
+ localVarQueryParameter['page'] = page;
270
+ }
271
+ if (pageSize !== undefined) {
272
+ localVarQueryParameter['pageSize'] = pageSize;
273
+ }
274
+ if (searchValue !== undefined) {
275
+ localVarQueryParameter['searchValue'] = searchValue;
276
+ }
277
+ if (reimbursementStatuses) {
278
+ localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
191
279
  }
192
280
  setSearchParams(localVarUrlObj, localVarQueryParameter);
193
281
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -502,6 +590,28 @@ export const ReimbursementBillApiFp = function (configuration) {
502
590
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
503
591
  });
504
592
  },
593
+ /**
594
+ *
595
+ * @summary 报账单导出
596
+ * @param {number} [parkId] 园区ID
597
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
598
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
599
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
600
+ * @param {string} [searchValue] 关键词
601
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
602
+ * @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
603
+ * @param {*} [options] Override http request option.
604
+ * @throws {RequiredError}
605
+ */
606
+ reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options) {
607
+ return __awaiter(this, void 0, void 0, function* () {
608
+ var _a, _b, _c;
609
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options);
610
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
611
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ReimbursementBillApi.reimbursementBillExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
612
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
613
+ });
614
+ },
505
615
  /**
506
616
  *
507
617
  * @summary 查询报账单流转列表
@@ -537,14 +647,21 @@ export const ReimbursementBillApiFp = function (configuration) {
537
647
  /**
538
648
  * 查询报账单列表
539
649
  * @summary 查询报账单列表
540
- * @param {ReimbursementBillSearchDto} dto
650
+ * @param {number} [parkId] 园区ID
651
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
652
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
653
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
654
+ * @param {number} [page] 当前页
655
+ * @param {number} [pageSize] 每页条数
656
+ * @param {string} [searchValue] 关键词
657
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
541
658
  * @param {*} [options] Override http request option.
542
659
  * @throws {RequiredError}
543
660
  */
544
- reimbursementBillSelectList(dto, options) {
661
+ reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options) {
545
662
  return __awaiter(this, void 0, void 0, function* () {
546
663
  var _a, _b, _c;
547
- const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillSelectList(dto, options);
664
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options);
548
665
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
549
666
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ReimbursementBillApi.reimbursementBillSelectList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
550
667
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -707,6 +824,16 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
707
824
  reimbursementBillDetails(requestParameters, options) {
708
825
  return localVarFp.reimbursementBillDetails(requestParameters.id, options).then((request) => request(axios, basePath));
709
826
  },
827
+ /**
828
+ *
829
+ * @summary 报账单导出
830
+ * @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
831
+ * @param {*} [options] Override http request option.
832
+ * @throws {RequiredError}
833
+ */
834
+ reimbursementBillExport(requestParameters = {}, options) {
835
+ return localVarFp.reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(axios, basePath));
836
+ },
710
837
  /**
711
838
  *
712
839
  * @summary 查询报账单流转列表
@@ -734,8 +861,8 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
734
861
  * @param {*} [options] Override http request option.
735
862
  * @throws {RequiredError}
736
863
  */
737
- reimbursementBillSelectList(requestParameters, options) {
738
- return localVarFp.reimbursementBillSelectList(requestParameters.dto, options).then((request) => request(axios, basePath));
864
+ reimbursementBillSelectList(requestParameters = {}, options) {
865
+ return localVarFp.reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(axios, basePath));
739
866
  },
740
867
  /**
741
868
  * 提交报账单
@@ -846,6 +973,17 @@ export class ReimbursementBillApi extends BaseAPI {
846
973
  reimbursementBillDetails(requestParameters, options) {
847
974
  return ReimbursementBillApiFp(this.configuration).reimbursementBillDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
848
975
  }
976
+ /**
977
+ *
978
+ * @summary 报账单导出
979
+ * @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
980
+ * @param {*} [options] Override http request option.
981
+ * @throws {RequiredError}
982
+ * @memberof ReimbursementBillApi
983
+ */
984
+ reimbursementBillExport(requestParameters = {}, options) {
985
+ return ReimbursementBillApiFp(this.configuration).reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(this.axios, this.basePath));
986
+ }
849
987
  /**
850
988
  *
851
989
  * @summary 查询报账单流转列表
@@ -876,8 +1014,8 @@ export class ReimbursementBillApi extends BaseAPI {
876
1014
  * @throws {RequiredError}
877
1015
  * @memberof ReimbursementBillApi
878
1016
  */
879
- reimbursementBillSelectList(requestParameters, options) {
880
- return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.dto, options).then((request) => request(this.axios, this.basePath));
1017
+ reimbursementBillSelectList(requestParameters = {}, options) {
1018
+ return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(this.axios, this.basePath));
881
1019
  }
882
1020
  /**
883
1021
  * 提交报账单
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -24,16 +24,16 @@ export interface IPageEnergyCostRecordInfoVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {number}
27
+ * @type {Array<EnergyCostRecordInfoVO>}
28
28
  * @memberof IPageEnergyCostRecordInfoVO
29
29
  */
30
- 'current'?: number;
30
+ 'records'?: Array<EnergyCostRecordInfoVO>;
31
31
  /**
32
32
  *
33
- * @type {Array<EnergyCostRecordInfoVO>}
33
+ * @type {number}
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
- 'records'?: Array<EnergyCostRecordInfoVO>;
36
+ 'current'?: number;
37
37
  /**
38
38
  *
39
39
  * @type {number}
@@ -44,15 +44,15 @@ export interface IPageEnergyCostRecordInfoVO {
44
44
  *
45
45
  * @type {boolean}
46
46
  * @memberof IPageEnergyCostRecordInfoVO
47
+ * @deprecated
47
48
  */
48
- 'searchCount'?: boolean;
49
+ 'hitCount'?: boolean;
49
50
  /**
50
51
  *
51
52
  * @type {boolean}
52
53
  * @memberof IPageEnergyCostRecordInfoVO
53
- * @deprecated
54
54
  */
55
- 'hitCount'?: boolean;
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 账单状态
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * 账单状态
15
+ *
16
16
  * @export
17
17
  * @enum {string}
18
18
  */
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -501,7 +501,6 @@ __exportStar(require("./reimbursement-bill-list-vo"), exports);
501
501
  __exportStar(require("./reimbursement-bill-payer-vo"), exports);
502
502
  __exportStar(require("./reimbursement-bill-process-record-list-vo"), exports);
503
503
  __exportStar(require("./reimbursement-bill-process-type-enum"), exports);
504
- __exportStar(require("./reimbursement-bill-search-dto"), exports);
505
504
  __exportStar(require("./reimbursement-bill-submit-dto"), exports);
506
505
  __exportStar(require("./reimbursement-create-result-dto"), exports);
507
506
  __exportStar(require("./reimbursement-platform-status-dto"), exports);
@@ -24,16 +24,16 @@ export interface IPageEnergyCostRecordInfoVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {number}
27
+ * @type {Array<EnergyCostRecordInfoVO>}
28
28
  * @memberof IPageEnergyCostRecordInfoVO
29
29
  */
30
- 'current'?: number;
30
+ 'records'?: Array<EnergyCostRecordInfoVO>;
31
31
  /**
32
32
  *
33
- * @type {Array<EnergyCostRecordInfoVO>}
33
+ * @type {number}
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
- 'records'?: Array<EnergyCostRecordInfoVO>;
36
+ 'current'?: number;
37
37
  /**
38
38
  *
39
39
  * @type {number}
@@ -44,15 +44,15 @@ export interface IPageEnergyCostRecordInfoVO {
44
44
  *
45
45
  * @type {boolean}
46
46
  * @memberof IPageEnergyCostRecordInfoVO
47
+ * @deprecated
47
48
  */
48
- 'searchCount'?: boolean;
49
+ 'hitCount'?: boolean;
49
50
  /**
50
51
  *
51
52
  * @type {boolean}
52
53
  * @memberof IPageEnergyCostRecordInfoVO
53
- * @deprecated
54
54
  */
55
- 'hitCount'?: boolean;
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 账单状态
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ReimbursementStatusEnum = void 0;
17
17
  /**
18
- * 账单状态
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
package/models/index.ts CHANGED
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -31,16 +31,16 @@ export interface IPageEnergyCostRecordInfoVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {number}
34
+ * @type {Array<EnergyCostRecordInfoVO>}
35
35
  * @memberof IPageEnergyCostRecordInfoVO
36
36
  */
37
- 'current'?: number;
37
+ 'records'?: Array<EnergyCostRecordInfoVO>;
38
38
  /**
39
39
  *
40
- * @type {Array<EnergyCostRecordInfoVO>}
40
+ * @type {number}
41
41
  * @memberof IPageEnergyCostRecordInfoVO
42
42
  */
43
- 'records'?: Array<EnergyCostRecordInfoVO>;
43
+ 'current'?: number;
44
44
  /**
45
45
  *
46
46
  * @type {number}
@@ -51,15 +51,15 @@ export interface IPageEnergyCostRecordInfoVO {
51
51
  *
52
52
  * @type {boolean}
53
53
  * @memberof IPageEnergyCostRecordInfoVO
54
+ * @deprecated
54
55
  */
55
- 'searchCount'?: boolean;
56
+ 'hitCount'?: boolean;
56
57
  /**
57
58
  *
58
59
  * @type {boolean}
59
60
  * @memberof IPageEnergyCostRecordInfoVO
60
- * @deprecated
61
61
  */
62
- 'hitCount'?: boolean;
62
+ 'searchCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  /**
18
- * 账单状态
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */