Java Statistics Result DTO - Structure and Grouping
This is a Java class representing a Data Transfer Object (DTO) for a statistics result.
The class has the following properties:
- 'scoreItemId' - a String representing the ID of the score item.
- 'calculationResultValue' - a BigDecimal representing the calculated result value.
- 'tableName' - a String representing the name of the table.
- 'tableSort' - an integer representing the sort order of the table.
- 'levelWeight' - a BigDecimal representing the weight of the level.
- 'deptName' - a String representing the name of the department.
- 'evaluationDimension' - a String representing the evaluation dimension.
- 'identity' - a String representing the identity.
- 'empName' - a String representing the name of the employee.
- 'empCode' - a String representing the code of the employee.
Additionally, there is a final 'Map' named 'integrityTotalMap' that is used for grouping the statistics results. The map has keys in the format 'empName-empCode-deptName' and values of type 'Map<String, StatisticsResultDTO>'. The values of the inner map are further grouped by the evaluation dimension and have values of type 'List
原文地址: https://www.cveoy.top/t/topic/lPC6 著作权归作者所有。请勿转载和采集!