@gizone/rrs-client 4.2.9-alpha.839 → 4.2.9-alpha.851
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/dist/esm/models/evaluation-config-add-dto.d.ts +2 -2
- package/dist/esm/models/evaluation-config-details-vo.d.ts +2 -2
- package/dist/esm/models/evaluation-config-import-dto.d.ts +2 -2
- package/dist/esm/models/evaluation-config-list-vo.d.ts +2 -2
- package/dist/esm/models/evaluation-config-update-dto.d.ts +2 -2
- package/dist/esm/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +7 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/evaluation-config-add-dto.d.ts +2 -2
- package/dist/models/evaluation-config-details-vo.d.ts +2 -2
- package/dist/models/evaluation-config-import-dto.d.ts +2 -2
- package/dist/models/evaluation-config-list-vo.d.ts +2 -2
- package/dist/models/evaluation-config-update-dto.d.ts +2 -2
- package/dist/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +7 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/models/sys-user.d.ts +4 -4
- package/models/evaluation-config-add-dto.ts +2 -2
- package/models/evaluation-config-details-vo.ts +2 -2
- package/models/evaluation-config-import-dto.ts +2 -2
- package/models/evaluation-config-list-vo.ts +2 -2
- package/models/evaluation-config-update-dto.ts +2 -2
- package/models/excel-import-upload-to-redis-vo-space-add-excel-dto.ts +11 -0
- package/models/ipage-energy-cost-record-info-vo.ts +6 -6
- package/models/sys-user.ts +4 -4
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -31,10 +31,10 @@ export interface EvaluationConfigAddDto {
|
|
|
31
31
|
'status': boolean;
|
|
32
32
|
/**
|
|
33
33
|
* 评价设置单号
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof EvaluationConfigAddDto
|
|
36
36
|
*/
|
|
37
|
-
'evaluationConfigCode':
|
|
37
|
+
'evaluationConfigCode': number;
|
|
38
38
|
/**
|
|
39
39
|
* 模块
|
|
40
40
|
* @type {string}
|
|
@@ -37,10 +37,10 @@ export interface EvaluationConfigDetailsVo {
|
|
|
37
37
|
'status'?: boolean;
|
|
38
38
|
/**
|
|
39
39
|
* 评价配置编号
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
41
41
|
* @memberof EvaluationConfigDetailsVo
|
|
42
42
|
*/
|
|
43
|
-
'evaluationConfigCode'?:
|
|
43
|
+
'evaluationConfigCode'?: number;
|
|
44
44
|
/**
|
|
45
45
|
* 模块ID
|
|
46
46
|
* @type {number}
|
|
@@ -18,10 +18,10 @@ import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
|
18
18
|
export interface EvaluationConfigImportDto {
|
|
19
19
|
/**
|
|
20
20
|
* 编号
|
|
21
|
-
* @type {
|
|
21
|
+
* @type {number}
|
|
22
22
|
* @memberof EvaluationConfigImportDto
|
|
23
23
|
*/
|
|
24
|
-
'evaluationConfigCode'?:
|
|
24
|
+
'evaluationConfigCode'?: number;
|
|
25
25
|
/**
|
|
26
26
|
* 模块/子分类,用/分隔,子分类可为空。例如:模块名 或 模块名/子分类名
|
|
27
27
|
* @type {string}
|
|
@@ -37,10 +37,10 @@ export interface EvaluationConfigListVo {
|
|
|
37
37
|
'status'?: boolean;
|
|
38
38
|
/**
|
|
39
39
|
* 评价单号
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
41
41
|
* @memberof EvaluationConfigListVo
|
|
42
42
|
*/
|
|
43
|
-
'evaluationConfigCode'?:
|
|
43
|
+
'evaluationConfigCode'?: number;
|
|
44
44
|
/**
|
|
45
45
|
* 模块ID
|
|
46
46
|
* @type {number}
|
|
@@ -31,10 +31,10 @@ export interface EvaluationConfigUpdateDto {
|
|
|
31
31
|
'status': boolean;
|
|
32
32
|
/**
|
|
33
33
|
* 评价设置单号
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof EvaluationConfigUpdateDto
|
|
36
36
|
*/
|
|
37
|
-
'evaluationConfigCode':
|
|
37
|
+
'evaluationConfigCode': number;
|
|
38
38
|
/**
|
|
39
39
|
* 模块
|
|
40
40
|
* @type {string}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
12
13
|
import type { SpaceAddExcelDTO } from './space-add-excel-dto';
|
|
13
14
|
/**
|
|
14
15
|
* excel导入到redis vo
|
|
@@ -40,4 +41,10 @@ export interface ExcelImportUploadToRedisVoSpaceAddExcelDTO {
|
|
|
40
41
|
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
41
42
|
*/
|
|
42
43
|
'parkId'?: number;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {EvaluationTypeEnum}
|
|
47
|
+
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
48
|
+
*/
|
|
49
|
+
'evaluationType'?: EvaluationTypeEnum;
|
|
43
50
|
}
|
|
@@ -34,12 +34,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -31,10 +31,10 @@ export interface EvaluationConfigAddDto {
|
|
|
31
31
|
'status': boolean;
|
|
32
32
|
/**
|
|
33
33
|
* 评价设置单号
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof EvaluationConfigAddDto
|
|
36
36
|
*/
|
|
37
|
-
'evaluationConfigCode':
|
|
37
|
+
'evaluationConfigCode': number;
|
|
38
38
|
/**
|
|
39
39
|
* 模块
|
|
40
40
|
* @type {string}
|
|
@@ -37,10 +37,10 @@ export interface EvaluationConfigDetailsVo {
|
|
|
37
37
|
'status'?: boolean;
|
|
38
38
|
/**
|
|
39
39
|
* 评价配置编号
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
41
41
|
* @memberof EvaluationConfigDetailsVo
|
|
42
42
|
*/
|
|
43
|
-
'evaluationConfigCode'?:
|
|
43
|
+
'evaluationConfigCode'?: number;
|
|
44
44
|
/**
|
|
45
45
|
* 模块ID
|
|
46
46
|
* @type {number}
|
|
@@ -18,10 +18,10 @@ import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
|
18
18
|
export interface EvaluationConfigImportDto {
|
|
19
19
|
/**
|
|
20
20
|
* 编号
|
|
21
|
-
* @type {
|
|
21
|
+
* @type {number}
|
|
22
22
|
* @memberof EvaluationConfigImportDto
|
|
23
23
|
*/
|
|
24
|
-
'evaluationConfigCode'?:
|
|
24
|
+
'evaluationConfigCode'?: number;
|
|
25
25
|
/**
|
|
26
26
|
* 模块/子分类,用/分隔,子分类可为空。例如:模块名 或 模块名/子分类名
|
|
27
27
|
* @type {string}
|
|
@@ -37,10 +37,10 @@ export interface EvaluationConfigListVo {
|
|
|
37
37
|
'status'?: boolean;
|
|
38
38
|
/**
|
|
39
39
|
* 评价单号
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
41
41
|
* @memberof EvaluationConfigListVo
|
|
42
42
|
*/
|
|
43
|
-
'evaluationConfigCode'?:
|
|
43
|
+
'evaluationConfigCode'?: number;
|
|
44
44
|
/**
|
|
45
45
|
* 模块ID
|
|
46
46
|
* @type {number}
|
|
@@ -31,10 +31,10 @@ export interface EvaluationConfigUpdateDto {
|
|
|
31
31
|
'status': boolean;
|
|
32
32
|
/**
|
|
33
33
|
* 评价设置单号
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof EvaluationConfigUpdateDto
|
|
36
36
|
*/
|
|
37
|
-
'evaluationConfigCode':
|
|
37
|
+
'evaluationConfigCode': number;
|
|
38
38
|
/**
|
|
39
39
|
* 模块
|
|
40
40
|
* @type {string}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
12
13
|
import type { SpaceAddExcelDTO } from './space-add-excel-dto';
|
|
13
14
|
/**
|
|
14
15
|
* excel导入到redis vo
|
|
@@ -40,4 +41,10 @@ export interface ExcelImportUploadToRedisVoSpaceAddExcelDTO {
|
|
|
40
41
|
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
41
42
|
*/
|
|
42
43
|
'parkId'?: number;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {EvaluationTypeEnum}
|
|
47
|
+
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
48
|
+
*/
|
|
49
|
+
'evaluationType'?: EvaluationTypeEnum;
|
|
43
50
|
}
|
|
@@ -34,12 +34,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -40,10 +40,10 @@ export interface EvaluationConfigAddDto {
|
|
|
40
40
|
'status': boolean;
|
|
41
41
|
/**
|
|
42
42
|
* 评价设置单号
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {number}
|
|
44
44
|
* @memberof EvaluationConfigAddDto
|
|
45
45
|
*/
|
|
46
|
-
'evaluationConfigCode':
|
|
46
|
+
'evaluationConfigCode': number;
|
|
47
47
|
/**
|
|
48
48
|
* 模块
|
|
49
49
|
* @type {string}
|
|
@@ -46,10 +46,10 @@ export interface EvaluationConfigDetailsVo {
|
|
|
46
46
|
'status'?: boolean;
|
|
47
47
|
/**
|
|
48
48
|
* 评价配置编号
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {number}
|
|
50
50
|
* @memberof EvaluationConfigDetailsVo
|
|
51
51
|
*/
|
|
52
|
-
'evaluationConfigCode'?:
|
|
52
|
+
'evaluationConfigCode'?: number;
|
|
53
53
|
/**
|
|
54
54
|
* 模块ID
|
|
55
55
|
* @type {number}
|
|
@@ -25,10 +25,10 @@ import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
|
25
25
|
export interface EvaluationConfigImportDto {
|
|
26
26
|
/**
|
|
27
27
|
* 编号
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof EvaluationConfigImportDto
|
|
30
30
|
*/
|
|
31
|
-
'evaluationConfigCode'?:
|
|
31
|
+
'evaluationConfigCode'?: number;
|
|
32
32
|
/**
|
|
33
33
|
* 模块/子分类,用/分隔,子分类可为空。例如:模块名 或 模块名/子分类名
|
|
34
34
|
* @type {string}
|
|
@@ -46,10 +46,10 @@ export interface EvaluationConfigListVo {
|
|
|
46
46
|
'status'?: boolean;
|
|
47
47
|
/**
|
|
48
48
|
* 评价单号
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {number}
|
|
50
50
|
* @memberof EvaluationConfigListVo
|
|
51
51
|
*/
|
|
52
|
-
'evaluationConfigCode'?:
|
|
52
|
+
'evaluationConfigCode'?: number;
|
|
53
53
|
/**
|
|
54
54
|
* 模块ID
|
|
55
55
|
* @type {number}
|
|
@@ -40,10 +40,10 @@ export interface EvaluationConfigUpdateDto {
|
|
|
40
40
|
'status': boolean;
|
|
41
41
|
/**
|
|
42
42
|
* 评价设置单号
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {number}
|
|
44
44
|
* @memberof EvaluationConfigUpdateDto
|
|
45
45
|
*/
|
|
46
|
-
'evaluationConfigCode':
|
|
46
|
+
'evaluationConfigCode': number;
|
|
47
47
|
/**
|
|
48
48
|
* 模块
|
|
49
49
|
* @type {string}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { EvaluationTypeEnum } from './evaluation-type-enum';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { SpaceAddExcelDTO } from './space-add-excel-dto';
|
|
@@ -47,5 +50,13 @@ export interface ExcelImportUploadToRedisVoSpaceAddExcelDTO {
|
|
|
47
50
|
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
48
51
|
*/
|
|
49
52
|
'parkId'?: number;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {EvaluationTypeEnum}
|
|
56
|
+
* @memberof ExcelImportUploadToRedisVoSpaceAddExcelDTO
|
|
57
|
+
*/
|
|
58
|
+
'evaluationType'?: EvaluationTypeEnum;
|
|
50
59
|
}
|
|
51
60
|
|
|
61
|
+
|
|
62
|
+
|
|
@@ -41,12 +41,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
41
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
42
42
|
*/
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
|
-
*/
|
|
49
|
-
'searchCount'?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -60,6 +54,12 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
60
54
|
* @deprecated
|
|
61
55
|
*/
|
|
62
56
|
'hitCount'?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
61
|
+
*/
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
package/models/sys-user.ts
CHANGED
|
@@ -388,16 +388,16 @@ export interface SysUser {
|
|
|
388
388
|
'sourceUserId'?: string;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @type {
|
|
391
|
+
* @type {string}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cid'?: string;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {number}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cuserId'?: number;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|