修复查询稽核结果与稽核列表

This commit is contained in:
xiaodong.hu
2023-07-24 17:28:20 +08:00
parent 629d392533
commit 8f8bcc4e99
12 changed files with 226 additions and 53 deletions

View File

@@ -52,7 +52,7 @@ public class GetInterviewInspectionListReq extends PageBasicInfo {
/**
* 地区编码
*/
private List<String> codeList;
private List<Long> codeList;
private String userId;

View File

@@ -45,7 +45,7 @@ public class GetInterviewInspectionResultListReq extends PageBasicInfo {
/**
* 地区编码
*/
private List<String> codeList;
private List<Long> codeList;
private String userId;

View File

@@ -19,6 +19,17 @@ import java.util.Date;
@ApiModel(description = "面试稽核结果信息")
public class InterviewInspectionResultVO {
@ApiModelProperty(value = "id")
private String id;
@ApiModelProperty(value = "面试计划id")
private Integer interviewPlanId;
@ApiModelProperty(value = "被面试人姓名")
private String intervieweeName;