@gizone/rrs-client 4.2.9-alpha.704 → 4.2.9-alpha.706

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 (59) hide show
  1. package/.openapi-generator/FILES +5 -1
  2. package/api.ts +1 -1
  3. package/apis/{evaluation-config-api.ts → default-api.ts} +322 -148
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +1 -1
  6. package/dist/apis/{evaluation-config-api.d.ts → default-api.d.ts} +203 -118
  7. package/dist/apis/{evaluation-config-api.js → default-api.js} +218 -79
  8. package/dist/esm/api.d.ts +1 -1
  9. package/dist/esm/api.js +1 -1
  10. package/dist/esm/apis/{evaluation-config-api.d.ts → default-api.d.ts} +203 -118
  11. package/dist/esm/apis/{evaluation-config-api.js → default-api.js} +213 -74
  12. package/dist/esm/models/evaluation-config-add-dto.d.ts +2 -2
  13. package/dist/esm/models/evaluation-config-details-vo.d.ts +2 -2
  14. package/dist/esm/models/evaluation-config-import-dto.d.ts +73 -12
  15. package/dist/esm/models/evaluation-config-list-vo.d.ts +1 -1
  16. package/dist/esm/models/evaluation-config-status-dto.d.ts +30 -0
  17. package/dist/esm/models/evaluation-config-status-dto.js +14 -0
  18. package/dist/esm/models/evaluation-config-update-dto.d.ts +2 -2
  19. package/dist/esm/models/evaluation-module-category-vo.d.ts +37 -0
  20. package/dist/esm/models/evaluation-module-category-vo.js +14 -0
  21. package/dist/esm/models/index.d.ts +4 -0
  22. package/dist/esm/models/index.js +4 -0
  23. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
  24. package/dist/esm/models/json-result-list-evaluation-module-category-vo.d.ts +62 -0
  25. package/dist/esm/models/json-result-list-evaluation-module-category-vo.js +14 -0
  26. package/dist/esm/models/sub-category-vo.d.ts +30 -0
  27. package/dist/esm/models/sub-category-vo.js +14 -0
  28. package/dist/esm/models/sys-user.d.ts +4 -4
  29. package/dist/models/evaluation-config-add-dto.d.ts +2 -2
  30. package/dist/models/evaluation-config-details-vo.d.ts +2 -2
  31. package/dist/models/evaluation-config-import-dto.d.ts +73 -12
  32. package/dist/models/evaluation-config-list-vo.d.ts +1 -1
  33. package/dist/models/evaluation-config-status-dto.d.ts +30 -0
  34. package/dist/models/evaluation-config-status-dto.js +15 -0
  35. package/dist/models/evaluation-config-update-dto.d.ts +2 -2
  36. package/dist/models/evaluation-module-category-vo.d.ts +37 -0
  37. package/dist/models/evaluation-module-category-vo.js +15 -0
  38. package/dist/models/index.d.ts +4 -0
  39. package/dist/models/index.js +4 -0
  40. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
  41. package/dist/models/json-result-list-evaluation-module-category-vo.d.ts +62 -0
  42. package/dist/models/json-result-list-evaluation-module-category-vo.js +15 -0
  43. package/dist/models/sub-category-vo.d.ts +30 -0
  44. package/dist/models/sub-category-vo.js +15 -0
  45. package/dist/models/sys-user.d.ts +4 -4
  46. package/models/evaluation-config-add-dto.ts +2 -2
  47. package/models/evaluation-config-details-vo.ts +2 -2
  48. package/models/evaluation-config-import-dto.ts +77 -12
  49. package/models/evaluation-config-list-vo.ts +1 -1
  50. package/models/evaluation-config-status-dto.ts +36 -0
  51. package/models/evaluation-config-update-dto.ts +2 -2
  52. package/models/evaluation-module-category-vo.ts +45 -0
  53. package/models/index.ts +4 -0
  54. package/models/ipage-energy-cost-record-info-vo.ts +3 -3
  55. package/models/json-result-list-evaluation-module-category-vo.ts +72 -0
  56. package/models/sub-category-vo.ts +36 -0
  57. package/models/sys-user.ts +4 -4
  58. package/ossutil.log +1221 -1221
  59. package/package.json +1 -1
@@ -36,11 +36,11 @@ export interface EvaluationConfigDetailsVo {
36
36
  */
37
37
  'status'?: boolean;
38
38
  /**
39
- * 评价单号
39
+ * 评价配置编号
40
40
  * @type {string}
41
41
  * @memberof EvaluationConfigDetailsVo
42
42
  */
43
- 'evaluationCode'?: string;
43
+ 'evaluationConfigCode'?: string;
44
44
  /**
45
45
  * 模块ID
46
46
  * @type {number}
@@ -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
  /**
13
14
  * 评价配置导入DTO
14
15
  * @export
@@ -22,41 +23,95 @@ export interface EvaluationConfigImportDto {
22
23
  */
23
24
  'evaluationConfigCode'?: string;
24
25
  /**
25
- * 类型
26
+ * 模块
26
27
  * @type {string}
27
28
  * @memberof EvaluationConfigImportDto
28
29
  */
29
- 'type'?: string;
30
+ 'module'?: string;
30
31
  /**
31
- * 状态(启用/禁用)
32
+ * 子分类
32
33
  * @type {string}
33
34
  * @memberof EvaluationConfigImportDto
34
35
  */
35
- 'status'?: string;
36
+ 'subCategory'?: string;
36
37
  /**
37
- * 评价单号
38
+ * 职责内容
38
39
  * @type {string}
39
40
  * @memberof EvaluationConfigImportDto
40
41
  */
41
- 'evaluationCode'?: string;
42
+ 'responsibilityContent'?: string;
42
43
  /**
43
- * 模块
44
+ * 一般违规描述
44
45
  * @type {string}
45
46
  * @memberof EvaluationConfigImportDto
46
47
  */
47
- 'module'?: string;
48
+ 'minorViolationDesc'?: string;
48
49
  /**
49
- * 子分类
50
+ * 一般违规扣款类型
50
51
  * @type {string}
51
52
  * @memberof EvaluationConfigImportDto
52
53
  */
53
- 'subCategory'?: string;
54
+ 'minorViolationDeductionType'?: string;
54
55
  /**
55
- * 职责内容
56
+ * 一般违规扣款
57
+ * @type {number}
58
+ * @memberof EvaluationConfigImportDto
59
+ */
60
+ 'minorViolationDeductionAmount'?: number;
61
+ /**
62
+ * 一般违规扣分
63
+ * @type {number}
64
+ * @memberof EvaluationConfigImportDto
65
+ */
66
+ 'minorViolationDeductionScore'?: number;
67
+ /**
68
+ * 较大违规描述
56
69
  * @type {string}
57
70
  * @memberof EvaluationConfigImportDto
58
71
  */
59
- 'responsibilityContent'?: string;
72
+ 'majorViolationDesc'?: string;
73
+ /**
74
+ * 较大违规扣款类型
75
+ * @type {string}
76
+ * @memberof EvaluationConfigImportDto
77
+ */
78
+ 'majorViolationDeductionType'?: string;
79
+ /**
80
+ * 较大违规扣款
81
+ * @type {number}
82
+ * @memberof EvaluationConfigImportDto
83
+ */
84
+ 'majorViolationDeductionAmount'?: number;
85
+ /**
86
+ * 较大违规扣分
87
+ * @type {number}
88
+ * @memberof EvaluationConfigImportDto
89
+ */
90
+ 'majorViolationDeductionScore'?: number;
91
+ /**
92
+ * 严重违规描述
93
+ * @type {string}
94
+ * @memberof EvaluationConfigImportDto
95
+ */
96
+ 'criticalViolationDesc'?: string;
97
+ /**
98
+ * 严重违规扣款类型
99
+ * @type {string}
100
+ * @memberof EvaluationConfigImportDto
101
+ */
102
+ 'criticalViolationDeductionType'?: string;
103
+ /**
104
+ * 严重违规扣款
105
+ * @type {number}
106
+ * @memberof EvaluationConfigImportDto
107
+ */
108
+ 'criticalViolationDeductionAmount'?: number;
109
+ /**
110
+ * 严重违规扣分
111
+ * @type {number}
112
+ * @memberof EvaluationConfigImportDto
113
+ */
114
+ 'criticalViolationDeductionScore'?: number;
60
115
  /**
61
116
  * 是否成功
62
117
  * @type {boolean}
@@ -75,4 +130,10 @@ export interface EvaluationConfigImportDto {
75
130
  * @memberof EvaluationConfigImportDto
76
131
  */
77
132
  'tips'?: string;
133
+ /**
134
+ *
135
+ * @type {EvaluationTypeEnum}
136
+ * @memberof EvaluationConfigImportDto
137
+ */
138
+ 'type'?: EvaluationTypeEnum;
78
139
  }
@@ -39,7 +39,7 @@ export interface EvaluationConfigListVo {
39
39
  * @type {string}
40
40
  * @memberof EvaluationConfigListVo
41
41
  */
42
- 'evaluationCode'?: string;
42
+ 'evaluationConfigCode'?: string;
43
43
  /**
44
44
  * 模块ID
45
45
  * @type {number}
@@ -0,0 +1,30 @@
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 EvaluationConfigStatusDto
16
+ */
17
+ export interface EvaluationConfigStatusDto {
18
+ /**
19
+ * id
20
+ * @type {number}
21
+ * @memberof EvaluationConfigStatusDto
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * 状态
26
+ * @type {boolean}
27
+ * @memberof EvaluationConfigStatusDto
28
+ */
29
+ 'status': boolean;
30
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -30,11 +30,11 @@ export interface EvaluationConfigUpdateDto {
30
30
  */
31
31
  'status': boolean;
32
32
  /**
33
- * 评价单号
33
+ * 评价设置单号
34
34
  * @type {string}
35
35
  * @memberof EvaluationConfigUpdateDto
36
36
  */
37
- 'evaluationCode': string;
37
+ 'evaluationConfigCode': string;
38
38
  /**
39
39
  * 模块
40
40
  * @type {string}
@@ -0,0 +1,37 @@
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
+ import type { SubCategoryVo } from './sub-category-vo';
13
+ /**
14
+ * 评价模块分类VO
15
+ * @export
16
+ * @interface EvaluationModuleCategoryVo
17
+ */
18
+ export interface EvaluationModuleCategoryVo {
19
+ /**
20
+ * 模块ID
21
+ * @type {number}
22
+ * @memberof EvaluationModuleCategoryVo
23
+ */
24
+ 'moduleId'?: number;
25
+ /**
26
+ * 模块名称
27
+ * @type {string}
28
+ * @memberof EvaluationModuleCategoryVo
29
+ */
30
+ 'moduleName'?: string;
31
+ /**
32
+ * 子分类列表
33
+ * @type {Array<SubCategoryVo>}
34
+ * @memberof EvaluationModuleCategoryVo
35
+ */
36
+ 'subCategories'?: Array<SubCategoryVo>;
37
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -176,6 +176,7 @@ export * from './evaluation-config-add-dto';
176
176
  export * from './evaluation-config-details-vo';
177
177
  export * from './evaluation-config-import-dto';
178
178
  export * from './evaluation-config-list-vo';
179
+ export * from './evaluation-config-status-dto';
179
180
  export * from './evaluation-config-update-dto';
180
181
  export * from './evaluation-config-violation-dto';
181
182
  export * from './evaluation-config-violation-vo';
@@ -184,6 +185,7 @@ export * from './evaluation-draft-dto';
184
185
  export * from './evaluation-item-add-dto';
185
186
  export * from './evaluation-item-vo';
186
187
  export * from './evaluation-list-vo';
188
+ export * from './evaluation-module-category-vo';
187
189
  export * from './evaluation-status-enum';
188
190
  export * from './evaluation-submit-dto';
189
191
  export * from './evaluation-type-enum';
@@ -312,6 +314,7 @@ export * from './json-result-list-equipment-detail-dto';
312
314
  export * from './json-result-list-equipment-qr-code-dto';
313
315
  export * from './json-result-list-equipment-system-tree-dto';
314
316
  export * from './json-result-list-equipment-tree-dto';
317
+ export * from './json-result-list-evaluation-module-category-vo';
315
318
  export * from './json-result-list-inspection-point';
316
319
  export * from './json-result-list-inspection-standard-entity';
317
320
  export * from './json-result-list-maintenance-order-process-record-list-vo';
@@ -560,6 +563,7 @@ export * from './srm-level-add-dto';
560
563
  export * from './srm-park-contract-change-vo';
561
564
  export * from './standard-delete-vo';
562
565
  export * from './sub-buttons';
566
+ export * from './sub-category-vo';
563
567
  export * from './supplier-add-vo';
564
568
  export * from './supplier-contact-vo';
565
569
  export * from './supplier-contract-add-or-update-vo';
@@ -176,6 +176,7 @@ export * from './evaluation-config-add-dto';
176
176
  export * from './evaluation-config-details-vo';
177
177
  export * from './evaluation-config-import-dto';
178
178
  export * from './evaluation-config-list-vo';
179
+ export * from './evaluation-config-status-dto';
179
180
  export * from './evaluation-config-update-dto';
180
181
  export * from './evaluation-config-violation-dto';
181
182
  export * from './evaluation-config-violation-vo';
@@ -184,6 +185,7 @@ export * from './evaluation-draft-dto';
184
185
  export * from './evaluation-item-add-dto';
185
186
  export * from './evaluation-item-vo';
186
187
  export * from './evaluation-list-vo';
188
+ export * from './evaluation-module-category-vo';
187
189
  export * from './evaluation-status-enum';
188
190
  export * from './evaluation-submit-dto';
189
191
  export * from './evaluation-type-enum';
@@ -312,6 +314,7 @@ export * from './json-result-list-equipment-detail-dto';
312
314
  export * from './json-result-list-equipment-qr-code-dto';
313
315
  export * from './json-result-list-equipment-system-tree-dto';
314
316
  export * from './json-result-list-equipment-tree-dto';
317
+ export * from './json-result-list-evaluation-module-category-vo';
315
318
  export * from './json-result-list-inspection-point';
316
319
  export * from './json-result-list-inspection-standard-entity';
317
320
  export * from './json-result-list-maintenance-order-process-record-list-vo';
@@ -560,6 +563,7 @@ export * from './srm-level-add-dto';
560
563
  export * from './srm-park-contract-change-vo';
561
564
  export * from './standard-delete-vo';
562
565
  export * from './sub-buttons';
566
+ export * from './sub-category-vo';
563
567
  export * from './supplier-add-vo';
564
568
  export * from './supplier-contact-vo';
565
569
  export * from './supplier-contract-add-or-update-vo';
@@ -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}
@@ -0,0 +1,62 @@
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
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { EvaluationModuleCategoryVo } from './evaluation-module-category-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListEvaluationModuleCategoryVo
18
+ */
19
+ export interface JsonResultListEvaluationModuleCategoryVo {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListEvaluationModuleCategoryVo
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListEvaluationModuleCategoryVo
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListEvaluationModuleCategoryVo
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<EvaluationModuleCategoryVo>}
41
+ * @memberof JsonResultListEvaluationModuleCategoryVo
42
+ */
43
+ 'data'?: Array<EvaluationModuleCategoryVo> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListEvaluationModuleCategoryVo
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListEvaluationModuleCategoryVo
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListEvaluationModuleCategoryVo
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,30 @@
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
+ * 子分类VO
14
+ * @export
15
+ * @interface SubCategoryVo
16
+ */
17
+ export interface SubCategoryVo {
18
+ /**
19
+ * 子分类ID
20
+ * @type {number}
21
+ * @memberof SubCategoryVo
22
+ */
23
+ 'subCategoryId'?: number;
24
+ /**
25
+ * 子分类名称
26
+ * @type {string}
27
+ * @memberof SubCategoryVo
28
+ */
29
+ 'subCategoryName'?: string;
30
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -30,11 +30,11 @@ export interface EvaluationConfigAddDto {
30
30
  */
31
31
  'status': boolean;
32
32
  /**
33
- * 评价单号
33
+ * 评价设置单号
34
34
  * @type {string}
35
35
  * @memberof EvaluationConfigAddDto
36
36
  */
37
- 'evaluationCode': string;
37
+ 'evaluationConfigCode': string;
38
38
  /**
39
39
  * 模块
40
40
  * @type {string}
@@ -36,11 +36,11 @@ export interface EvaluationConfigDetailsVo {
36
36
  */
37
37
  'status'?: boolean;
38
38
  /**
39
- * 评价单号
39
+ * 评价配置编号
40
40
  * @type {string}
41
41
  * @memberof EvaluationConfigDetailsVo
42
42
  */
43
- 'evaluationCode'?: string;
43
+ 'evaluationConfigCode'?: string;
44
44
  /**
45
45
  * 模块ID
46
46
  * @type {number}
@@ -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
  /**
13
14
  * 评价配置导入DTO
14
15
  * @export
@@ -22,41 +23,95 @@ export interface EvaluationConfigImportDto {
22
23
  */
23
24
  'evaluationConfigCode'?: string;
24
25
  /**
25
- * 类型
26
+ * 模块
26
27
  * @type {string}
27
28
  * @memberof EvaluationConfigImportDto
28
29
  */
29
- 'type'?: string;
30
+ 'module'?: string;
30
31
  /**
31
- * 状态(启用/禁用)
32
+ * 子分类
32
33
  * @type {string}
33
34
  * @memberof EvaluationConfigImportDto
34
35
  */
35
- 'status'?: string;
36
+ 'subCategory'?: string;
36
37
  /**
37
- * 评价单号
38
+ * 职责内容
38
39
  * @type {string}
39
40
  * @memberof EvaluationConfigImportDto
40
41
  */
41
- 'evaluationCode'?: string;
42
+ 'responsibilityContent'?: string;
42
43
  /**
43
- * 模块
44
+ * 一般违规描述
44
45
  * @type {string}
45
46
  * @memberof EvaluationConfigImportDto
46
47
  */
47
- 'module'?: string;
48
+ 'minorViolationDesc'?: string;
48
49
  /**
49
- * 子分类
50
+ * 一般违规扣款类型
50
51
  * @type {string}
51
52
  * @memberof EvaluationConfigImportDto
52
53
  */
53
- 'subCategory'?: string;
54
+ 'minorViolationDeductionType'?: string;
54
55
  /**
55
- * 职责内容
56
+ * 一般违规扣款
57
+ * @type {number}
58
+ * @memberof EvaluationConfigImportDto
59
+ */
60
+ 'minorViolationDeductionAmount'?: number;
61
+ /**
62
+ * 一般违规扣分
63
+ * @type {number}
64
+ * @memberof EvaluationConfigImportDto
65
+ */
66
+ 'minorViolationDeductionScore'?: number;
67
+ /**
68
+ * 较大违规描述
56
69
  * @type {string}
57
70
  * @memberof EvaluationConfigImportDto
58
71
  */
59
- 'responsibilityContent'?: string;
72
+ 'majorViolationDesc'?: string;
73
+ /**
74
+ * 较大违规扣款类型
75
+ * @type {string}
76
+ * @memberof EvaluationConfigImportDto
77
+ */
78
+ 'majorViolationDeductionType'?: string;
79
+ /**
80
+ * 较大违规扣款
81
+ * @type {number}
82
+ * @memberof EvaluationConfigImportDto
83
+ */
84
+ 'majorViolationDeductionAmount'?: number;
85
+ /**
86
+ * 较大违规扣分
87
+ * @type {number}
88
+ * @memberof EvaluationConfigImportDto
89
+ */
90
+ 'majorViolationDeductionScore'?: number;
91
+ /**
92
+ * 严重违规描述
93
+ * @type {string}
94
+ * @memberof EvaluationConfigImportDto
95
+ */
96
+ 'criticalViolationDesc'?: string;
97
+ /**
98
+ * 严重违规扣款类型
99
+ * @type {string}
100
+ * @memberof EvaluationConfigImportDto
101
+ */
102
+ 'criticalViolationDeductionType'?: string;
103
+ /**
104
+ * 严重违规扣款
105
+ * @type {number}
106
+ * @memberof EvaluationConfigImportDto
107
+ */
108
+ 'criticalViolationDeductionAmount'?: number;
109
+ /**
110
+ * 严重违规扣分
111
+ * @type {number}
112
+ * @memberof EvaluationConfigImportDto
113
+ */
114
+ 'criticalViolationDeductionScore'?: number;
60
115
  /**
61
116
  * 是否成功
62
117
  * @type {boolean}
@@ -75,4 +130,10 @@ export interface EvaluationConfigImportDto {
75
130
  * @memberof EvaluationConfigImportDto
76
131
  */
77
132
  'tips'?: string;
133
+ /**
134
+ *
135
+ * @type {EvaluationTypeEnum}
136
+ * @memberof EvaluationConfigImportDto
137
+ */
138
+ 'type'?: EvaluationTypeEnum;
78
139
  }
@@ -39,7 +39,7 @@ export interface EvaluationConfigListVo {
39
39
  * @type {string}
40
40
  * @memberof EvaluationConfigListVo
41
41
  */
42
- 'evaluationCode'?: string;
42
+ 'evaluationConfigCode'?: string;
43
43
  /**
44
44
  * 模块ID
45
45
  * @type {number}