@gizone/rrs-client 4.2.9-alpha.548 → 4.2.9-alpha.549
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/.openapi-generator/FILES +3 -0
- package/apis/energy-cost-record-controller-api.ts +224 -14
- package/dist/apis/energy-cost-record-controller-api.d.ts +117 -7
- package/dist/apis/energy-cost-record-controller-api.js +164 -13
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +117 -7
- package/dist/esm/apis/energy-cost-record-controller-api.js +164 -13
- package/dist/esm/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/esm/models/energy-cost-edit-record-dto.js +36 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.js +14 -0
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.js +14 -0
- package/dist/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/models/energy-cost-edit-record-dto.js +39 -0
- package/dist/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/models/energy-cost-record-bill-info-vo.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/models/json-result-energy-cost-record-bill-info-vo.js +15 -0
- package/models/energy-cost-edit-record-dto.ts +189 -0
- package/models/energy-cost-record-bill-info-vo.ts +54 -0
- package/models/index.ts +3 -0
- package/models/json-result-energy-cost-record-bill-info-vo.ts +72 -0
- package/ossutil.log +1074 -1071
- package/package.json +1 -1
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { EnergyCostRecordBillInfoVO } from './energy-cost-record-bill-info-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultEnergyCostRecordBillInfoVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultEnergyCostRecordBillInfoVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {EnergyCostRecordBillInfoVO}
|
|
50
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: EnergyCostRecordBillInfoVO | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultEnergyCostRecordBillInfoVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|