提交修改

This commit is contained in:
quyixiao 2020-11-10 16:09:59 +08:00
commit da7f9f0c88
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ public class ChartResultReq extends BasePage{
private Long startId;
@ApiModelProperty(value = "等级",name = "scoreLevel")
private Long scoreLevel;
private String scoreLevel;
private Long loginUserId;

View File

@ -22,7 +22,7 @@ public class ChartStatistical {
private String tip;
@ApiModelProperty(value = "等级",name = "scoreLevel")
private Long scoreLevel;
private String scoreLevel;
}

View File

@ -79,7 +79,7 @@ public interface ResultRecordMapper extends BaseMapper<ResultRecord> {
List<ChartStatistical> countNumByScoreLevel(@Param("startId") Long startId,@Param("evaluationIds")List<Long> evaluationIds,@Param("departmentIds")List<String> departmentIds);
List<ResultRecord> selectChartDetailList(@Param("page") IPage page, @Param("departmentIds") List<String> departmentIds, @Param("startId")Long startId,@Param("scoreLevel")Long scoreLevel);
List<ResultRecord> selectChartDetailList(@Param("page") IPage page, @Param("departmentIds") List<String> departmentIds, @Param("startId")Long startId,@Param("scoreLevel")String scoreLevel);
int batchDeleteByStartId(@Param("startId")Long startId);