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

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.
Files changed (49) hide show
  1. package/.openapi-generator/FILES +1 -1
  2. package/apis/reimbursement-bill-api.ts +18 -5
  3. package/dist/apis/reimbursement-bill-api.d.ts +10 -2
  4. package/dist/apis/reimbursement-bill-api.js +10 -5
  5. package/dist/esm/apis/reimbursement-bill-api.d.ts +10 -2
  6. package/dist/esm/apis/reimbursement-bill-api.js +10 -5
  7. package/dist/esm/models/index.d.ts +1 -1
  8. package/dist/esm/models/index.js +1 -1
  9. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  10. package/dist/esm/models/payment-method-enum.d.ts +1 -2
  11. package/dist/esm/models/payment-method-enum.js +2 -3
  12. package/dist/esm/models/reimbursement-bill-cover-info.d.ts +84 -0
  13. package/dist/esm/models/{reimbursement-bill-process-type-enum.js → reimbursement-bill-cover-info.js} +1 -10
  14. package/dist/esm/models/reimbursement-bill-details-vo.d.ts +49 -0
  15. package/dist/esm/models/reimbursement-bill-draft-dto.d.ts +12 -0
  16. package/dist/esm/models/reimbursement-bill-list-vo.d.ts +49 -0
  17. package/dist/esm/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
  18. package/dist/esm/models/reimbursement-bill-submit-dto.d.ts +12 -0
  19. package/dist/esm/models/reimbursement-status-enum.d.ts +4 -2
  20. package/dist/esm/models/reimbursement-status-enum.js +5 -3
  21. package/dist/models/index.d.ts +1 -1
  22. package/dist/models/index.js +1 -1
  23. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  24. package/dist/models/payment-method-enum.d.ts +1 -2
  25. package/dist/models/payment-method-enum.js +2 -3
  26. package/dist/models/reimbursement-bill-cover-info.d.ts +84 -0
  27. package/dist/models/{reimbursement-bill-process-type-enum.js → reimbursement-bill-cover-info.js} +0 -11
  28. package/dist/models/reimbursement-bill-details-vo.d.ts +49 -0
  29. package/dist/models/reimbursement-bill-draft-dto.d.ts +12 -0
  30. package/dist/models/reimbursement-bill-list-vo.d.ts +49 -0
  31. package/dist/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
  32. package/dist/models/reimbursement-bill-submit-dto.d.ts +12 -0
  33. package/dist/models/reimbursement-status-enum.d.ts +4 -2
  34. package/dist/models/reimbursement-status-enum.js +5 -3
  35. package/models/index.ts +1 -1
  36. package/models/ipage-energy-cost-record-info-vo.ts +4 -4
  37. package/models/payment-method-enum.ts +2 -3
  38. package/models/reimbursement-bill-cover-info.ts +90 -0
  39. package/models/reimbursement-bill-details-vo.ts +51 -0
  40. package/models/reimbursement-bill-draft-dto.ts +12 -0
  41. package/models/reimbursement-bill-list-vo.ts +51 -0
  42. package/models/reimbursement-bill-process-record-list-vo.ts +5 -10
  43. package/models/reimbursement-bill-submit-dto.ts +12 -0
  44. package/models/reimbursement-status-enum.ts +5 -3
  45. package/ossutil.log +1194 -1188
  46. package/package.json +1 -1
  47. package/dist/esm/models/reimbursement-bill-process-type-enum.d.ts +0 -22
  48. package/dist/models/reimbursement-bill-process-type-enum.d.ts +0 -22
  49. package/models/reimbursement-bill-process-type-enum.ts +0 -32
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { ReimbursementBillProcessTypeEnum } from './reimbursement-bill-process-type-enum';
13
12
  /**
14
13
  * 报账单流转列表
15
14
  * @export
@@ -23,11 +22,11 @@ export interface ReimbursementBillProcessRecordListVo {
23
22
  */
24
23
  'reimbursementBillId'?: number;
25
24
  /**
26
- *
27
- * @type {ReimbursementBillProcessTypeEnum}
25
+ * 过程类型
26
+ * @type {string}
28
27
  * @memberof ReimbursementBillProcessRecordListVo
29
28
  */
30
- 'processType'?: ReimbursementBillProcessTypeEnum;
29
+ 'processType'?: string;
31
30
  /**
32
31
  * 处理人id
33
32
  * @type {number}
@@ -47,9 +46,9 @@ export interface ReimbursementBillProcessRecordListVo {
47
46
  */
48
47
  'handlerTime'?: string;
49
48
  /**
50
- * 处理状态
49
+ * 备注
51
50
  * @type {string}
52
51
  * @memberof ReimbursementBillProcessRecordListVo
53
52
  */
54
- 'handlerStatus'?: string;
53
+ 'remarks'?: string;
55
54
  }
@@ -85,6 +85,12 @@ export interface ReimbursementBillSubmitDto {
85
85
  * @memberof ReimbursementBillSubmitDto
86
86
  */
87
87
  'paymentMethod': PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillSubmitDto
92
+ */
93
+ 'payType': number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillSubmitDto {
133
139
  * @memberof ReimbursementBillSubmitDto
134
140
  */
135
141
  'invoiceType': InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillSubmitDto
146
+ */
147
+ 'hasPaperInvoice': boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -17,8 +17,10 @@
17
17
  export declare const ReimbursementStatusEnum: {
18
18
  readonly Draft: "DRAFT";
19
19
  readonly Submitted: "SUBMITTED";
20
- readonly Revoked: "REVOKED";
21
- readonly Rejected: "REJECTED";
20
+ readonly BudgetOccupied: "BUDGET_OCCUPIED";
21
+ readonly ReimbursementSuccess: "REIMBURSEMENT_SUCCESS";
22
+ readonly Processing: "PROCESSING";
22
23
  readonly Completed: "COMPLETED";
24
+ readonly Canceled: "CANCELED";
23
25
  };
24
26
  export type ReimbursementStatusEnum = typeof ReimbursementStatusEnum[keyof typeof ReimbursementStatusEnum];
@@ -19,7 +19,9 @@
19
19
  export const ReimbursementStatusEnum = {
20
20
  Draft: 'DRAFT',
21
21
  Submitted: 'SUBMITTED',
22
- Revoked: 'REVOKED',
23
- Rejected: 'REJECTED',
24
- Completed: 'COMPLETED'
22
+ BudgetOccupied: 'BUDGET_OCCUPIED',
23
+ ReimbursementSuccess: 'REIMBURSEMENT_SUCCESS',
24
+ Processing: 'PROCESSING',
25
+ Completed: 'COMPLETED',
26
+ Canceled: 'CANCELED'
25
27
  };
@@ -477,6 +477,7 @@ export * from './privacy-update-state-dto';
477
477
  export * from './process-network-monitor-repair-vo';
478
478
  export * from './process-work-order-vo';
479
479
  export * from './register-body';
480
+ export * from './reimbursement-bill-cover-info';
480
481
  export * from './reimbursement-bill-details-vo';
481
482
  export * from './reimbursement-bill-draft-dto';
482
483
  export * from './reimbursement-bill-handle-info-add-dto';
@@ -484,7 +485,6 @@ export * from './reimbursement-bill-handle-info-vo';
484
485
  export * from './reimbursement-bill-list-vo';
485
486
  export * from './reimbursement-bill-payer-vo';
486
487
  export * from './reimbursement-bill-process-record-list-vo';
487
- export * from './reimbursement-bill-process-type-enum';
488
488
  export * from './reimbursement-bill-submit-dto';
489
489
  export * from './reimbursement-create-result-dto';
490
490
  export * from './reimbursement-platform-status-dto';
@@ -493,6 +493,7 @@ __exportStar(require("./privacy-update-state-dto"), exports);
493
493
  __exportStar(require("./process-network-monitor-repair-vo"), exports);
494
494
  __exportStar(require("./process-work-order-vo"), exports);
495
495
  __exportStar(require("./register-body"), exports);
496
+ __exportStar(require("./reimbursement-bill-cover-info"), exports);
496
497
  __exportStar(require("./reimbursement-bill-details-vo"), exports);
497
498
  __exportStar(require("./reimbursement-bill-draft-dto"), exports);
498
499
  __exportStar(require("./reimbursement-bill-handle-info-add-dto"), exports);
@@ -500,7 +501,6 @@ __exportStar(require("./reimbursement-bill-handle-info-vo"), exports);
500
501
  __exportStar(require("./reimbursement-bill-list-vo"), exports);
501
502
  __exportStar(require("./reimbursement-bill-payer-vo"), exports);
502
503
  __exportStar(require("./reimbursement-bill-process-record-list-vo"), exports);
503
- __exportStar(require("./reimbursement-bill-process-type-enum"), exports);
504
504
  __exportStar(require("./reimbursement-bill-submit-dto"), exports);
505
505
  __exportStar(require("./reimbursement-create-result-dto"), exports);
506
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 {Array<EnergyCostRecordInfoVO>}
27
+ * @type {number}
28
28
  * @memberof IPageEnergyCostRecordInfoVO
29
29
  */
30
- 'records'?: Array<EnergyCostRecordInfoVO>;
30
+ 'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<EnergyCostRecordInfoVO>}
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
- 'current'?: number;
36
+ 'records'?: Array<EnergyCostRecordInfoVO>;
37
37
  /**
38
38
  *
39
39
  * @type {number}
@@ -16,8 +16,7 @@
16
16
  */
17
17
  export declare const PaymentMethodEnum: {
18
18
  readonly OnlinePayment: "ONLINE_PAYMENT";
19
- readonly BankWithholding: "BANK_WITHHOLDING";
19
+ readonly DirectDeduction: "DIRECT_DEDUCTION";
20
20
  readonly RecordOnly: "RECORD_ONLY";
21
- readonly OfflineBank: "OFFLINE_BANK";
22
21
  };
23
22
  export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
@@ -21,7 +21,6 @@ exports.PaymentMethodEnum = void 0;
21
21
  */
22
22
  exports.PaymentMethodEnum = {
23
23
  OnlinePayment: 'ONLINE_PAYMENT',
24
- BankWithholding: 'BANK_WITHHOLDING',
25
- RecordOnly: 'RECORD_ONLY',
26
- OfflineBank: 'OFFLINE_BANK'
24
+ DirectDeduction: 'DIRECT_DEDUCTION',
25
+ RecordOnly: 'RECORD_ONLY'
27
26
  };
@@ -0,0 +1,84 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 报账单封皮信息
14
+ * @export
15
+ * @interface ReimbursementBillCoverInfo
16
+ */
17
+ export interface ReimbursementBillCoverInfo {
18
+ /**
19
+ * 业务编码
20
+ * @type {string}
21
+ * @memberof ReimbursementBillCoverInfo
22
+ */
23
+ 'busCode'?: string;
24
+ /**
25
+ * 业务域
26
+ * @type {string}
27
+ * @memberof ReimbursementBillCoverInfo
28
+ */
29
+ 'buDomain'?: string;
30
+ /**
31
+ * 节点类型
32
+ * @type {string}
33
+ * @memberof ReimbursementBillCoverInfo
34
+ */
35
+ 'nodeType'?: string;
36
+ /**
37
+ * 业务结算账单号
38
+ * @type {string}
39
+ * @memberof ReimbursementBillCoverInfo
40
+ */
41
+ 'billCode'?: string;
42
+ /**
43
+ * 财智云报账申请单号
44
+ * @type {string}
45
+ * @memberof ReimbursementBillCoverInfo
46
+ */
47
+ 'fdcNo'?: string;
48
+ /**
49
+ * 报账单号
50
+ * @type {string}
51
+ * @memberof ReimbursementBillCoverInfo
52
+ */
53
+ 'reimNo'?: string;
54
+ /**
55
+ * 单据经办人账号
56
+ * @type {string}
57
+ * @memberof ReimbursementBillCoverInfo
58
+ */
59
+ 'handlerId'?: string;
60
+ /**
61
+ * 单据经办人姓名
62
+ * @type {string}
63
+ * @memberof ReimbursementBillCoverInfo
64
+ */
65
+ 'handlerName'?: string;
66
+ /**
67
+ * 业务场景
68
+ * @type {string}
69
+ * @memberof ReimbursementBillCoverInfo
70
+ */
71
+ 'srcInfo'?: string;
72
+ /**
73
+ * 文件名
74
+ * @type {string}
75
+ * @memberof ReimbursementBillCoverInfo
76
+ */
77
+ 'fileName'?: string;
78
+ /**
79
+ * 文件地址
80
+ * @type {string}
81
+ * @memberof ReimbursementBillCoverInfo
82
+ */
83
+ 'fileUrl'?: string;
84
+ }
@@ -13,14 +13,3 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.ReimbursementBillProcessTypeEnum = void 0;
17
- /**
18
- * 过程类型
19
- * @export
20
- * @enum {string}
21
- */
22
- exports.ReimbursementBillProcessTypeEnum = {
23
- Initiate: 'INITIATE',
24
- Submit: 'SUBMIT',
25
- Withdraw: 'WITHDRAW'
26
- };
@@ -12,6 +12,7 @@
12
12
  import type { ExpenseSubjectEnum } from './expense-subject-enum';
13
13
  import type { InvoiceTypeEnum } from './invoice-type-enum';
14
14
  import type { PaymentMethodEnum } from './payment-method-enum';
15
+ import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
15
16
  import type { ReimbursementBillHandleInfoVo } from './reimbursement-bill-handle-info-vo';
16
17
  import type { ReimbursementStatusEnum } from './reimbursement-status-enum';
17
18
  /**
@@ -92,6 +93,12 @@ export interface ReimbursementBillDetailsVo {
92
93
  * @memberof ReimbursementBillDetailsVo
93
94
  */
94
95
  'paymentMethod'?: PaymentMethodEnum;
96
+ /**
97
+ * 付款类型
98
+ * @type {number}
99
+ * @memberof ReimbursementBillDetailsVo
100
+ */
101
+ 'payType'?: number;
95
102
  /**
96
103
  * 付款日期
97
104
  * @type {string}
@@ -134,6 +141,12 @@ export interface ReimbursementBillDetailsVo {
134
141
  * @memberof ReimbursementBillDetailsVo
135
142
  */
136
143
  'invoiceType'?: InvoiceTypeEnum;
144
+ /**
145
+ * 是否有纸质发票
146
+ * @type {boolean}
147
+ * @memberof ReimbursementBillDetailsVo
148
+ */
149
+ 'hasPaperInvoice'?: boolean;
137
150
  /**
138
151
  * 是否有合同
139
152
  * @type {boolean}
@@ -236,6 +249,42 @@ export interface ReimbursementBillDetailsVo {
236
249
  * @memberof ReimbursementBillDetailsVo
237
250
  */
238
251
  'reimbursementStatus'?: ReimbursementStatusEnum;
252
+ /**
253
+ * 是否已进行场景分摊
254
+ * @type {boolean}
255
+ * @memberof ReimbursementBillDetailsVo
256
+ */
257
+ 'scenarioAllocated'?: boolean;
258
+ /**
259
+ * 明细单号
260
+ * @type {string}
261
+ * @memberof ReimbursementBillDetailsVo
262
+ */
263
+ 'detailedOrderNo'?: string;
264
+ /**
265
+ * 财智云返回预算占用单号
266
+ * @type {string}
267
+ * @memberof ReimbursementBillDetailsVo
268
+ */
269
+ 'occupyNo'?: string;
270
+ /**
271
+ * 财智云报账申请单号
272
+ * @type {string}
273
+ * @memberof ReimbursementBillDetailsVo
274
+ */
275
+ 'fdcNo'?: string;
276
+ /**
277
+ * 报账平台BZD单号
278
+ * @type {string}
279
+ * @memberof ReimbursementBillDetailsVo
280
+ */
281
+ 'reimNo'?: string;
282
+ /**
283
+ *
284
+ * @type {ReimbursementBillCoverInfo}
285
+ * @memberof ReimbursementBillDetailsVo
286
+ */
287
+ 'billCover'?: ReimbursementBillCoverInfo;
239
288
  }
240
289
  export declare const ReimbursementBillDetailsVoTaxTypeEnum: {
241
290
  readonly Tax13Product: "TAX_13_PRODUCT";
@@ -85,6 +85,12 @@ export interface ReimbursementBillDraftDto {
85
85
  * @memberof ReimbursementBillDraftDto
86
86
  */
87
87
  'paymentMethod'?: PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillDraftDto
92
+ */
93
+ 'payType'?: number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillDraftDto {
133
139
  * @memberof ReimbursementBillDraftDto
134
140
  */
135
141
  'invoiceType'?: InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillDraftDto
146
+ */
147
+ 'hasPaperInvoice'?: boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -12,6 +12,7 @@
12
12
  import type { ExpenseSubjectEnum } from './expense-subject-enum';
13
13
  import type { InvoiceTypeEnum } from './invoice-type-enum';
14
14
  import type { PaymentMethodEnum } from './payment-method-enum';
15
+ import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
15
16
  import type { ReimbursementStatusEnum } from './reimbursement-status-enum';
16
17
  /**
17
18
  * 报账单列表
@@ -103,6 +104,12 @@ export interface ReimbursementBillListVo {
103
104
  * @memberof ReimbursementBillListVo
104
105
  */
105
106
  'paymentMethod'?: PaymentMethodEnum;
107
+ /**
108
+ * 付款类型
109
+ * @type {number}
110
+ * @memberof ReimbursementBillListVo
111
+ */
112
+ 'payType'?: number;
106
113
  /**
107
114
  * 付款方(编码)
108
115
  * @type {string}
@@ -115,6 +122,12 @@ export interface ReimbursementBillListVo {
115
122
  * @memberof ReimbursementBillListVo
116
123
  */
117
124
  'invoiceType'?: InvoiceTypeEnum;
125
+ /**
126
+ * 是否有纸质发票
127
+ * @type {boolean}
128
+ * @memberof ReimbursementBillListVo
129
+ */
130
+ 'hasPaperInvoice'?: boolean;
118
131
  /**
119
132
  * 付款日期
120
133
  * @type {string}
@@ -139,4 +152,40 @@ export interface ReimbursementBillListVo {
139
152
  * @memberof ReimbursementBillListVo
140
153
  */
141
154
  'handlerUserId'?: number;
155
+ /**
156
+ * 是否已进行场景分摊
157
+ * @type {boolean}
158
+ * @memberof ReimbursementBillListVo
159
+ */
160
+ 'scenarioAllocated'?: boolean;
161
+ /**
162
+ * 明细单号
163
+ * @type {string}
164
+ * @memberof ReimbursementBillListVo
165
+ */
166
+ 'detailedOrderNo'?: string;
167
+ /**
168
+ * 财智云返回预算占用单号
169
+ * @type {string}
170
+ * @memberof ReimbursementBillListVo
171
+ */
172
+ 'occupyNo'?: string;
173
+ /**
174
+ * 财智云报账申请单号
175
+ * @type {string}
176
+ * @memberof ReimbursementBillListVo
177
+ */
178
+ 'fdcNo'?: string;
179
+ /**
180
+ * 报账平台BZD单号
181
+ * @type {string}
182
+ * @memberof ReimbursementBillListVo
183
+ */
184
+ 'reimNo'?: string;
185
+ /**
186
+ *
187
+ * @type {ReimbursementBillCoverInfo}
188
+ * @memberof ReimbursementBillListVo
189
+ */
190
+ 'billCover'?: ReimbursementBillCoverInfo;
142
191
  }
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { ReimbursementBillProcessTypeEnum } from './reimbursement-bill-process-type-enum';
13
12
  /**
14
13
  * 报账单流转列表
15
14
  * @export
@@ -23,11 +22,11 @@ export interface ReimbursementBillProcessRecordListVo {
23
22
  */
24
23
  'reimbursementBillId'?: number;
25
24
  /**
26
- *
27
- * @type {ReimbursementBillProcessTypeEnum}
25
+ * 过程类型
26
+ * @type {string}
28
27
  * @memberof ReimbursementBillProcessRecordListVo
29
28
  */
30
- 'processType'?: ReimbursementBillProcessTypeEnum;
29
+ 'processType'?: string;
31
30
  /**
32
31
  * 处理人id
33
32
  * @type {number}
@@ -47,9 +46,9 @@ export interface ReimbursementBillProcessRecordListVo {
47
46
  */
48
47
  'handlerTime'?: string;
49
48
  /**
50
- * 处理状态
49
+ * 备注
51
50
  * @type {string}
52
51
  * @memberof ReimbursementBillProcessRecordListVo
53
52
  */
54
- 'handlerStatus'?: string;
53
+ 'remarks'?: string;
55
54
  }
@@ -85,6 +85,12 @@ export interface ReimbursementBillSubmitDto {
85
85
  * @memberof ReimbursementBillSubmitDto
86
86
  */
87
87
  'paymentMethod': PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillSubmitDto
92
+ */
93
+ 'payType': number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillSubmitDto {
133
139
  * @memberof ReimbursementBillSubmitDto
134
140
  */
135
141
  'invoiceType': InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillSubmitDto
146
+ */
147
+ 'hasPaperInvoice': boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -17,8 +17,10 @@
17
17
  export declare const ReimbursementStatusEnum: {
18
18
  readonly Draft: "DRAFT";
19
19
  readonly Submitted: "SUBMITTED";
20
- readonly Revoked: "REVOKED";
21
- readonly Rejected: "REJECTED";
20
+ readonly BudgetOccupied: "BUDGET_OCCUPIED";
21
+ readonly ReimbursementSuccess: "REIMBURSEMENT_SUCCESS";
22
+ readonly Processing: "PROCESSING";
22
23
  readonly Completed: "COMPLETED";
24
+ readonly Canceled: "CANCELED";
23
25
  };
24
26
  export type ReimbursementStatusEnum = typeof ReimbursementStatusEnum[keyof typeof ReimbursementStatusEnum];
@@ -22,7 +22,9 @@ exports.ReimbursementStatusEnum = void 0;
22
22
  exports.ReimbursementStatusEnum = {
23
23
  Draft: 'DRAFT',
24
24
  Submitted: 'SUBMITTED',
25
- Revoked: 'REVOKED',
26
- Rejected: 'REJECTED',
27
- Completed: 'COMPLETED'
25
+ BudgetOccupied: 'BUDGET_OCCUPIED',
26
+ ReimbursementSuccess: 'REIMBURSEMENT_SUCCESS',
27
+ Processing: 'PROCESSING',
28
+ Completed: 'COMPLETED',
29
+ Canceled: 'CANCELED'
28
30
  };
package/models/index.ts CHANGED
@@ -477,6 +477,7 @@ export * from './privacy-update-state-dto';
477
477
  export * from './process-network-monitor-repair-vo';
478
478
  export * from './process-work-order-vo';
479
479
  export * from './register-body';
480
+ export * from './reimbursement-bill-cover-info';
480
481
  export * from './reimbursement-bill-details-vo';
481
482
  export * from './reimbursement-bill-draft-dto';
482
483
  export * from './reimbursement-bill-handle-info-add-dto';
@@ -484,7 +485,6 @@ export * from './reimbursement-bill-handle-info-vo';
484
485
  export * from './reimbursement-bill-list-vo';
485
486
  export * from './reimbursement-bill-payer-vo';
486
487
  export * from './reimbursement-bill-process-record-list-vo';
487
- export * from './reimbursement-bill-process-type-enum';
488
488
  export * from './reimbursement-bill-submit-dto';
489
489
  export * from './reimbursement-create-result-dto';
490
490
  export * from './reimbursement-platform-status-dto';
@@ -31,16 +31,16 @@ export interface IPageEnergyCostRecordInfoVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {Array<EnergyCostRecordInfoVO>}
34
+ * @type {number}
35
35
  * @memberof IPageEnergyCostRecordInfoVO
36
36
  */
37
- 'records'?: Array<EnergyCostRecordInfoVO>;
37
+ 'current'?: number;
38
38
  /**
39
39
  *
40
- * @type {number}
40
+ * @type {Array<EnergyCostRecordInfoVO>}
41
41
  * @memberof IPageEnergyCostRecordInfoVO
42
42
  */
43
- 'current'?: number;
43
+ 'records'?: Array<EnergyCostRecordInfoVO>;
44
44
  /**
45
45
  *
46
46
  * @type {number}
@@ -22,9 +22,8 @@
22
22
 
23
23
  export const PaymentMethodEnum = {
24
24
  OnlinePayment: 'ONLINE_PAYMENT',
25
- BankWithholding: 'BANK_WITHHOLDING',
26
- RecordOnly: 'RECORD_ONLY',
27
- OfflineBank: 'OFFLINE_BANK'
25
+ DirectDeduction: 'DIRECT_DEDUCTION',
26
+ RecordOnly: 'RECORD_ONLY'
28
27
  } as const;
29
28
 
30
29
  export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
@@ -0,0 +1,90 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 报账单封皮信息
19
+ * @export
20
+ * @interface ReimbursementBillCoverInfo
21
+ */
22
+ export interface ReimbursementBillCoverInfo {
23
+ /**
24
+ * 业务编码
25
+ * @type {string}
26
+ * @memberof ReimbursementBillCoverInfo
27
+ */
28
+ 'busCode'?: string;
29
+ /**
30
+ * 业务域
31
+ * @type {string}
32
+ * @memberof ReimbursementBillCoverInfo
33
+ */
34
+ 'buDomain'?: string;
35
+ /**
36
+ * 节点类型
37
+ * @type {string}
38
+ * @memberof ReimbursementBillCoverInfo
39
+ */
40
+ 'nodeType'?: string;
41
+ /**
42
+ * 业务结算账单号
43
+ * @type {string}
44
+ * @memberof ReimbursementBillCoverInfo
45
+ */
46
+ 'billCode'?: string;
47
+ /**
48
+ * 财智云报账申请单号
49
+ * @type {string}
50
+ * @memberof ReimbursementBillCoverInfo
51
+ */
52
+ 'fdcNo'?: string;
53
+ /**
54
+ * 报账单号
55
+ * @type {string}
56
+ * @memberof ReimbursementBillCoverInfo
57
+ */
58
+ 'reimNo'?: string;
59
+ /**
60
+ * 单据经办人账号
61
+ * @type {string}
62
+ * @memberof ReimbursementBillCoverInfo
63
+ */
64
+ 'handlerId'?: string;
65
+ /**
66
+ * 单据经办人姓名
67
+ * @type {string}
68
+ * @memberof ReimbursementBillCoverInfo
69
+ */
70
+ 'handlerName'?: string;
71
+ /**
72
+ * 业务场景
73
+ * @type {string}
74
+ * @memberof ReimbursementBillCoverInfo
75
+ */
76
+ 'srcInfo'?: string;
77
+ /**
78
+ * 文件名
79
+ * @type {string}
80
+ * @memberof ReimbursementBillCoverInfo
81
+ */
82
+ 'fileName'?: string;
83
+ /**
84
+ * 文件地址
85
+ * @type {string}
86
+ * @memberof ReimbursementBillCoverInfo
87
+ */
88
+ 'fileUrl'?: string;
89
+ }
90
+