面试稽核操作合格不合格及撤销
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.cool.store.dto.inspection.interview;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Fun Li
|
||||
* @version 1.0
|
||||
* @date 2023/7/19 17:47
|
||||
*/
|
||||
@Data
|
||||
public class InspectionRevocationDTO {
|
||||
|
||||
@ApiModelProperty("稽核信息Id")
|
||||
private Long inspectionId;
|
||||
|
||||
@ApiModelProperty("操作说明")
|
||||
private String description;
|
||||
|
||||
@ApiModelProperty("多凭证文件链接集合")
|
||||
private List<String> files;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.cool.store.dto.inspection.interview;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Fun Li
|
||||
* @version 1.0
|
||||
* @date 2023/7/19 17:05
|
||||
*/
|
||||
@Data
|
||||
public class InspectionSubmissionDTO {
|
||||
|
||||
@ApiModelProperty(value = "稽核信息表id", required = true)
|
||||
private Long inspectionId;
|
||||
|
||||
@ApiModelProperty(value = "是否合格,0为不合格,1为合格", required = true)
|
||||
private Integer whetherPass;
|
||||
|
||||
@ApiModelProperty("稽核说明,仅当不合格时为必传项")
|
||||
private String description;
|
||||
|
||||
@ApiModelProperty("稽核多凭证文件链接")
|
||||
private List<String> files;
|
||||
|
||||
}
|
||||
@@ -9,15 +9,15 @@ public class HyInspection {
|
||||
|
||||
private String operatorUserId;
|
||||
|
||||
private Byte type;
|
||||
private Integer type;
|
||||
|
||||
private Byte status;
|
||||
private Integer status;
|
||||
|
||||
private String files;
|
||||
|
||||
private String description;
|
||||
|
||||
private LocalDateTime inspectionTime;
|
||||
private String inspectionTime;
|
||||
|
||||
private String creator;
|
||||
|
||||
@@ -29,9 +29,9 @@ public class HyInspection {
|
||||
|
||||
private String createTime;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
private String updateTime;
|
||||
|
||||
public HyInspection(Long id, Long interviewPlanId, String operatorUserId, Byte type, Byte status, String files, String description, LocalDateTime inspectionTime, String creator, String updator, String remark, Boolean deleted, String createTime, LocalDateTime updateTime) {
|
||||
public HyInspection(Long id, Long interviewPlanId, String operatorUserId, Integer type, Integer status, String files, String description, String inspectionTime, String creator, String updator, String remark, Boolean deleted, String createTime, String updateTime) {
|
||||
this.id = id;
|
||||
this.interviewPlanId = interviewPlanId;
|
||||
this.operatorUserId = operatorUserId;
|
||||
@@ -76,19 +76,19 @@ public class HyInspection {
|
||||
this.operatorUserId = operatorUserId == null ? null : operatorUserId.trim();
|
||||
}
|
||||
|
||||
public Byte getType() {
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Byte type) {
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
@@ -108,11 +108,11 @@ public class HyInspection {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getInspectionTime() {
|
||||
public String getInspectionTime() {
|
||||
return inspectionTime;
|
||||
}
|
||||
|
||||
public void setInspectionTime(LocalDateTime inspectionTime) {
|
||||
public void setInspectionTime(String inspectionTime) {
|
||||
this.inspectionTime = inspectionTime;
|
||||
}
|
||||
|
||||
@@ -156,11 +156,11 @@ public class HyInspection {
|
||||
this.createTime = createTime == null ? null : createTime.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getUpdateTime() {
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(LocalDateTime updateTime) {
|
||||
public void setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,5 @@
|
||||
package com.cool.store.entity;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
public class HyInterviewInspectionLog {
|
||||
private Long id;
|
||||
|
||||
@@ -9,21 +7,21 @@ public class HyInterviewInspectionLog {
|
||||
|
||||
private Long inspectionId;
|
||||
|
||||
private Byte operationType;
|
||||
private Integer operationType;
|
||||
|
||||
private String description;
|
||||
|
||||
private String files;
|
||||
|
||||
private LocalDateTime operationTime;
|
||||
private String operationTime;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String createTime;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
private String updateTime;
|
||||
|
||||
public HyInterviewInspectionLog(Long id, String operatorUserId, Long inspectionId, Byte operationType, String description, String files, LocalDateTime operationTime, String remark, String createTime, LocalDateTime updateTime) {
|
||||
public HyInterviewInspectionLog(Long id, String operatorUserId, Long inspectionId, Integer operationType, String description, String files, String operationTime, String remark, String createTime, String updateTime) {
|
||||
this.id = id;
|
||||
this.operatorUserId = operatorUserId;
|
||||
this.inspectionId = inspectionId;
|
||||
@@ -64,11 +62,11 @@ public class HyInterviewInspectionLog {
|
||||
this.inspectionId = inspectionId;
|
||||
}
|
||||
|
||||
public Byte getOperationType() {
|
||||
public Integer getOperationType() {
|
||||
return operationType;
|
||||
}
|
||||
|
||||
public void setOperationType(Byte operationType) {
|
||||
public void setOperationType(Integer operationType) {
|
||||
this.operationType = operationType;
|
||||
}
|
||||
|
||||
@@ -88,11 +86,11 @@ public class HyInterviewInspectionLog {
|
||||
this.files = files == null ? null : files.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getOperationTime() {
|
||||
public String getOperationTime() {
|
||||
return operationTime;
|
||||
}
|
||||
|
||||
public void setOperationTime(LocalDateTime operationTime) {
|
||||
public void setOperationTime(String operationTime) {
|
||||
this.operationTime = operationTime;
|
||||
}
|
||||
|
||||
@@ -112,11 +110,11 @@ public class HyInterviewInspectionLog {
|
||||
this.createTime = createTime == null ? null : createTime.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getUpdateTime() {
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(LocalDateTime updateTime) {
|
||||
public void setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user