@gizone/rrs-client 4.2.9-alpha.758 → 4.2.9-alpha.759

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.
@@ -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}
@@ -207,6 +207,12 @@ export interface ReimbursementBillDetailsVo {
207
207
  * @memberof ReimbursementBillDetailsVo
208
208
  */
209
209
  'taxType'?: ReimbursementBillDetailsVoTaxTypeEnum;
210
+ /**
211
+ * 税率
212
+ * @type {number}
213
+ * @memberof ReimbursementBillDetailsVo
214
+ */
215
+ 'taxRate'?: number;
210
216
  /**
211
217
  * 净额
212
218
  * @type {number}
@@ -312,5 +318,6 @@ export declare const ReimbursementBillDetailsVoTaxTypeEnum: {
312
318
  readonly Tax1Service: "TAX_1_SERVICE";
313
319
  readonly TaxExempt: "TAX_EXEMPT";
314
320
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
321
+ readonly MultipleTax: "MULTIPLE_TAX";
315
322
  };
316
323
  export type ReimbursementBillDetailsVoTaxTypeEnum = typeof ReimbursementBillDetailsVoTaxTypeEnum[keyof typeof ReimbursementBillDetailsVoTaxTypeEnum];
@@ -18,5 +18,6 @@ export const ReimbursementBillDetailsVoTaxTypeEnum = {
18
18
  Tax3Service: 'TAX_3_SERVICE',
19
19
  Tax1Service: 'TAX_1_SERVICE',
20
20
  TaxExempt: 'TAX_EXEMPT',
21
- TaxNonTaxable: 'TAX_NON_TAXABLE'
21
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
22
+ MultipleTax: 'MULTIPLE_TAX'
22
23
  };
@@ -181,6 +181,12 @@ export interface ReimbursementBillDraftDto {
181
181
  * @memberof ReimbursementBillDraftDto
182
182
  */
183
183
  'taxType'?: ReimbursementBillDraftDtoTaxTypeEnum;
184
+ /**
185
+ * 税额
186
+ * @type {number}
187
+ * @memberof ReimbursementBillDraftDto
188
+ */
189
+ 'taxAmount'?: number;
184
190
  /**
185
191
  * 附件列表
186
192
  * @type {Array<string>}
@@ -214,5 +220,6 @@ export declare const ReimbursementBillDraftDtoTaxTypeEnum: {
214
220
  readonly Tax1Service: "TAX_1_SERVICE";
215
221
  readonly TaxExempt: "TAX_EXEMPT";
216
222
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
223
+ readonly MultipleTax: "MULTIPLE_TAX";
217
224
  };
218
225
  export type ReimbursementBillDraftDtoTaxTypeEnum = typeof ReimbursementBillDraftDtoTaxTypeEnum[keyof typeof ReimbursementBillDraftDtoTaxTypeEnum];
@@ -18,5 +18,6 @@ export const ReimbursementBillDraftDtoTaxTypeEnum = {
18
18
  Tax3Service: 'TAX_3_SERVICE',
19
19
  Tax1Service: 'TAX_1_SERVICE',
20
20
  TaxExempt: 'TAX_EXEMPT',
21
- TaxNonTaxable: 'TAX_NON_TAXABLE'
21
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
22
+ MultipleTax: 'MULTIPLE_TAX'
22
23
  };
@@ -181,6 +181,12 @@ export interface ReimbursementBillSubmitDto {
181
181
  * @memberof ReimbursementBillSubmitDto
182
182
  */
183
183
  'taxType': ReimbursementBillSubmitDtoTaxTypeEnum;
184
+ /**
185
+ * 税额
186
+ * @type {number}
187
+ * @memberof ReimbursementBillSubmitDto
188
+ */
189
+ 'taxAmount'?: number;
184
190
  /**
185
191
  * 附件列表
186
192
  * @type {Array<string>}
@@ -208,5 +214,6 @@ export declare const ReimbursementBillSubmitDtoTaxTypeEnum: {
208
214
  readonly Tax1Service: "TAX_1_SERVICE";
209
215
  readonly TaxExempt: "TAX_EXEMPT";
210
216
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
217
+ readonly MultipleTax: "MULTIPLE_TAX";
211
218
  };
212
219
  export type ReimbursementBillSubmitDtoTaxTypeEnum = typeof ReimbursementBillSubmitDtoTaxTypeEnum[keyof typeof ReimbursementBillSubmitDtoTaxTypeEnum];
@@ -18,5 +18,6 @@ export const ReimbursementBillSubmitDtoTaxTypeEnum = {
18
18
  Tax3Service: 'TAX_3_SERVICE',
19
19
  Tax1Service: 'TAX_1_SERVICE',
20
20
  TaxExempt: 'TAX_EXEMPT',
21
- TaxNonTaxable: 'TAX_NON_TAXABLE'
21
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
22
+ MultipleTax: 'MULTIPLE_TAX'
22
23
  };
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -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}
@@ -207,6 +207,12 @@ export interface ReimbursementBillDetailsVo {
207
207
  * @memberof ReimbursementBillDetailsVo
208
208
  */
209
209
  'taxType'?: ReimbursementBillDetailsVoTaxTypeEnum;
210
+ /**
211
+ * 税率
212
+ * @type {number}
213
+ * @memberof ReimbursementBillDetailsVo
214
+ */
215
+ 'taxRate'?: number;
210
216
  /**
211
217
  * 净额
212
218
  * @type {number}
@@ -312,5 +318,6 @@ export declare const ReimbursementBillDetailsVoTaxTypeEnum: {
312
318
  readonly Tax1Service: "TAX_1_SERVICE";
313
319
  readonly TaxExempt: "TAX_EXEMPT";
314
320
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
321
+ readonly MultipleTax: "MULTIPLE_TAX";
315
322
  };
316
323
  export type ReimbursementBillDetailsVoTaxTypeEnum = typeof ReimbursementBillDetailsVoTaxTypeEnum[keyof typeof ReimbursementBillDetailsVoTaxTypeEnum];
@@ -21,5 +21,6 @@ exports.ReimbursementBillDetailsVoTaxTypeEnum = {
21
21
  Tax3Service: 'TAX_3_SERVICE',
22
22
  Tax1Service: 'TAX_1_SERVICE',
23
23
  TaxExempt: 'TAX_EXEMPT',
24
- TaxNonTaxable: 'TAX_NON_TAXABLE'
24
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
25
+ MultipleTax: 'MULTIPLE_TAX'
25
26
  };
@@ -181,6 +181,12 @@ export interface ReimbursementBillDraftDto {
181
181
  * @memberof ReimbursementBillDraftDto
182
182
  */
183
183
  'taxType'?: ReimbursementBillDraftDtoTaxTypeEnum;
184
+ /**
185
+ * 税额
186
+ * @type {number}
187
+ * @memberof ReimbursementBillDraftDto
188
+ */
189
+ 'taxAmount'?: number;
184
190
  /**
185
191
  * 附件列表
186
192
  * @type {Array<string>}
@@ -214,5 +220,6 @@ export declare const ReimbursementBillDraftDtoTaxTypeEnum: {
214
220
  readonly Tax1Service: "TAX_1_SERVICE";
215
221
  readonly TaxExempt: "TAX_EXEMPT";
216
222
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
223
+ readonly MultipleTax: "MULTIPLE_TAX";
217
224
  };
218
225
  export type ReimbursementBillDraftDtoTaxTypeEnum = typeof ReimbursementBillDraftDtoTaxTypeEnum[keyof typeof ReimbursementBillDraftDtoTaxTypeEnum];
@@ -21,5 +21,6 @@ exports.ReimbursementBillDraftDtoTaxTypeEnum = {
21
21
  Tax3Service: 'TAX_3_SERVICE',
22
22
  Tax1Service: 'TAX_1_SERVICE',
23
23
  TaxExempt: 'TAX_EXEMPT',
24
- TaxNonTaxable: 'TAX_NON_TAXABLE'
24
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
25
+ MultipleTax: 'MULTIPLE_TAX'
25
26
  };
@@ -181,6 +181,12 @@ export interface ReimbursementBillSubmitDto {
181
181
  * @memberof ReimbursementBillSubmitDto
182
182
  */
183
183
  'taxType': ReimbursementBillSubmitDtoTaxTypeEnum;
184
+ /**
185
+ * 税额
186
+ * @type {number}
187
+ * @memberof ReimbursementBillSubmitDto
188
+ */
189
+ 'taxAmount'?: number;
184
190
  /**
185
191
  * 附件列表
186
192
  * @type {Array<string>}
@@ -208,5 +214,6 @@ export declare const ReimbursementBillSubmitDtoTaxTypeEnum: {
208
214
  readonly Tax1Service: "TAX_1_SERVICE";
209
215
  readonly TaxExempt: "TAX_EXEMPT";
210
216
  readonly TaxNonTaxable: "TAX_NON_TAXABLE";
217
+ readonly MultipleTax: "MULTIPLE_TAX";
211
218
  };
212
219
  export type ReimbursementBillSubmitDtoTaxTypeEnum = typeof ReimbursementBillSubmitDtoTaxTypeEnum[keyof typeof ReimbursementBillSubmitDtoTaxTypeEnum];
@@ -21,5 +21,6 @@ exports.ReimbursementBillSubmitDtoTaxTypeEnum = {
21
21
  Tax3Service: 'TAX_3_SERVICE',
22
22
  Tax1Service: 'TAX_1_SERVICE',
23
23
  TaxExempt: 'TAX_EXEMPT',
24
- TaxNonTaxable: 'TAX_NON_TAXABLE'
24
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
25
+ MultipleTax: 'MULTIPLE_TAX'
25
26
  };
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -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}
@@ -224,6 +224,12 @@ export interface ReimbursementBillDetailsVo {
224
224
  * @memberof ReimbursementBillDetailsVo
225
225
  */
226
226
  'taxType'?: ReimbursementBillDetailsVoTaxTypeEnum;
227
+ /**
228
+ * 税率
229
+ * @type {number}
230
+ * @memberof ReimbursementBillDetailsVo
231
+ */
232
+ 'taxRate'?: number;
227
233
  /**
228
234
  * 净额
229
235
  * @type {number}
@@ -329,7 +335,8 @@ export const ReimbursementBillDetailsVoTaxTypeEnum = {
329
335
  Tax3Service: 'TAX_3_SERVICE',
330
336
  Tax1Service: 'TAX_1_SERVICE',
331
337
  TaxExempt: 'TAX_EXEMPT',
332
- TaxNonTaxable: 'TAX_NON_TAXABLE'
338
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
339
+ MultipleTax: 'MULTIPLE_TAX'
333
340
  } as const;
334
341
 
335
342
  export type ReimbursementBillDetailsVoTaxTypeEnum = typeof ReimbursementBillDetailsVoTaxTypeEnum[keyof typeof ReimbursementBillDetailsVoTaxTypeEnum];
@@ -194,6 +194,12 @@ export interface ReimbursementBillDraftDto {
194
194
  * @memberof ReimbursementBillDraftDto
195
195
  */
196
196
  'taxType'?: ReimbursementBillDraftDtoTaxTypeEnum;
197
+ /**
198
+ * 税额
199
+ * @type {number}
200
+ * @memberof ReimbursementBillDraftDto
201
+ */
202
+ 'taxAmount'?: number;
197
203
  /**
198
204
  * 附件列表
199
205
  * @type {Array<string>}
@@ -227,7 +233,8 @@ export const ReimbursementBillDraftDtoTaxTypeEnum = {
227
233
  Tax3Service: 'TAX_3_SERVICE',
228
234
  Tax1Service: 'TAX_1_SERVICE',
229
235
  TaxExempt: 'TAX_EXEMPT',
230
- TaxNonTaxable: 'TAX_NON_TAXABLE'
236
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
237
+ MultipleTax: 'MULTIPLE_TAX'
231
238
  } as const;
232
239
 
233
240
  export type ReimbursementBillDraftDtoTaxTypeEnum = typeof ReimbursementBillDraftDtoTaxTypeEnum[keyof typeof ReimbursementBillDraftDtoTaxTypeEnum];
@@ -194,6 +194,12 @@ export interface ReimbursementBillSubmitDto {
194
194
  * @memberof ReimbursementBillSubmitDto
195
195
  */
196
196
  'taxType': ReimbursementBillSubmitDtoTaxTypeEnum;
197
+ /**
198
+ * 税额
199
+ * @type {number}
200
+ * @memberof ReimbursementBillSubmitDto
201
+ */
202
+ 'taxAmount'?: number;
197
203
  /**
198
204
  * 附件列表
199
205
  * @type {Array<string>}
@@ -221,7 +227,8 @@ export const ReimbursementBillSubmitDtoTaxTypeEnum = {
221
227
  Tax3Service: 'TAX_3_SERVICE',
222
228
  Tax1Service: 'TAX_1_SERVICE',
223
229
  TaxExempt: 'TAX_EXEMPT',
224
- TaxNonTaxable: 'TAX_NON_TAXABLE'
230
+ TaxNonTaxable: 'TAX_NON_TAXABLE',
231
+ MultipleTax: 'MULTIPLE_TAX'
225
232
  } as const;
226
233
 
227
234
  export type ReimbursementBillSubmitDtoTaxTypeEnum = typeof ReimbursementBillSubmitDtoTaxTypeEnum[keyof typeof ReimbursementBillSubmitDtoTaxTypeEnum];
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {string}
391
+ * @type {number}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cid'?: string;
394
+ 'cuserId'?: number;
395
395
  /**
396
396
  *
397
- * @type {number}
397
+ * @type {string}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cuserId'?: number;
400
+ 'cid'?: string;
401
401
  }
402
402
 
403
403