添加稽核查询功能
This commit is contained in:
@@ -4,6 +4,9 @@ import com.cool.store.common.PageBasicInfo;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: hxd
|
||||
@@ -12,14 +15,23 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
@ApiModel
|
||||
@Accessors(chain = true)
|
||||
public class GetInterviewInspectionListReq extends PageBasicInfo {
|
||||
|
||||
@ApiModelProperty("搜索类型")
|
||||
private String searchType;
|
||||
@ApiModelProperty("面试官姓名")
|
||||
private String interviewerName;
|
||||
|
||||
|
||||
@ApiModelProperty("搜索内容")
|
||||
private String searchContent;
|
||||
@ApiModelProperty("面试官手机号")
|
||||
private String interviewerMobile;
|
||||
|
||||
|
||||
@ApiModelProperty("被面试人姓名")
|
||||
private String intervieweeName;
|
||||
|
||||
|
||||
@ApiModelProperty("被面试人手机号")
|
||||
private String intervieweeMobile;
|
||||
|
||||
|
||||
@ApiModelProperty("稽核状态(0为未稽核,1为合格,2为不合格)")
|
||||
@@ -37,6 +49,10 @@ public class GetInterviewInspectionListReq extends PageBasicInfo {
|
||||
@ApiModelProperty("面试结束时间")
|
||||
private String endTime;
|
||||
|
||||
/**
|
||||
* 地区编码
|
||||
*/
|
||||
private List<String> codeList;
|
||||
|
||||
private String userId;
|
||||
|
||||
|
||||
@@ -5,6 +5,9 @@ import com.cool.store.common.PageBasicInfo;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: hxd
|
||||
@@ -13,6 +16,7 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
@ApiModel
|
||||
@Accessors(chain = true)
|
||||
public class GetInterviewInspectionResultListReq extends PageBasicInfo {
|
||||
|
||||
@ApiModelProperty("搜索类型")
|
||||
@@ -38,4 +42,11 @@ public class GetInterviewInspectionResultListReq extends PageBasicInfo {
|
||||
@ApiModelProperty("面试结束时间")
|
||||
private String endTime;
|
||||
|
||||
/**
|
||||
* 地区编码
|
||||
*/
|
||||
private List<String> codeList;
|
||||
|
||||
private String userId;
|
||||
|
||||
}
|
||||
|
||||
@@ -18,8 +18,11 @@ import java.util.List;
|
||||
@Data
|
||||
public class InterviewInspectionHistoryInfo {
|
||||
|
||||
@ApiModelProperty(value = "操作人")
|
||||
private String operatorUser;
|
||||
@ApiModelProperty(value = "操作人姓名")
|
||||
private String operatorUserName;
|
||||
|
||||
@ApiModelProperty(value = "操作人电话")
|
||||
private String operatorUserMobile;
|
||||
|
||||
@ApiModelProperty(value = "稽核时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@@ -29,6 +32,16 @@ public class InterviewInspectionHistoryInfo {
|
||||
@ApiModelProperty(value = "原因")
|
||||
private String description;
|
||||
|
||||
@ApiModelProperty(value = "操作类型")
|
||||
private String operationType;
|
||||
|
||||
@ApiModelProperty(value = "凭证或者证据")
|
||||
private List<String> files;
|
||||
|
||||
|
||||
private String filesStr;
|
||||
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
}
|
||||
|
||||
@@ -19,8 +19,11 @@ import java.util.List;
|
||||
@ApiModel(description = "面试稽核详情信息")
|
||||
public class InterviewInspectionInfo {
|
||||
|
||||
@ApiModelProperty(value = "稽核人")
|
||||
private String auditor;
|
||||
@ApiModelProperty(value = "稽核人姓名")
|
||||
private String auditorName;
|
||||
|
||||
@ApiModelProperty(value = "稽核人电话")
|
||||
private String auditorMobile;
|
||||
|
||||
@ApiModelProperty(value = "稽核时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@@ -34,4 +37,6 @@ public class InterviewInspectionInfo {
|
||||
|
||||
@ApiModelProperty(value = "凭证或者证据")
|
||||
private List<String> files;
|
||||
|
||||
private String filesStr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user