面试稽核操作first-commit
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
package com.cool.store.entity;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
public class HyInspection {
|
||||
private Long id;
|
||||
|
||||
private Long interviewPlanId;
|
||||
|
||||
private String operatorUserId;
|
||||
|
||||
private Byte type;
|
||||
|
||||
private Byte status;
|
||||
|
||||
private String files;
|
||||
|
||||
private String description;
|
||||
|
||||
private LocalDateTime inspectionTime;
|
||||
|
||||
private String creator;
|
||||
|
||||
private String updator;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Boolean deleted;
|
||||
|
||||
private String createTime;
|
||||
|
||||
private LocalDateTime 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) {
|
||||
this.id = id;
|
||||
this.interviewPlanId = interviewPlanId;
|
||||
this.operatorUserId = operatorUserId;
|
||||
this.type = type;
|
||||
this.status = status;
|
||||
this.files = files;
|
||||
this.description = description;
|
||||
this.inspectionTime = inspectionTime;
|
||||
this.creator = creator;
|
||||
this.updator = updator;
|
||||
this.remark = remark;
|
||||
this.deleted = deleted;
|
||||
this.createTime = createTime;
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
public HyInspection() {
|
||||
super();
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getInterviewPlanId() {
|
||||
return interviewPlanId;
|
||||
}
|
||||
|
||||
public void setInterviewPlanId(Long interviewPlanId) {
|
||||
this.interviewPlanId = interviewPlanId;
|
||||
}
|
||||
|
||||
public String getOperatorUserId() {
|
||||
return operatorUserId;
|
||||
}
|
||||
|
||||
public void setOperatorUserId(String operatorUserId) {
|
||||
this.operatorUserId = operatorUserId == null ? null : operatorUserId.trim();
|
||||
}
|
||||
|
||||
public Byte getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(Byte type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Byte getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Byte status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
public void setFiles(String files) {
|
||||
this.files = files == null ? null : files.trim();
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getInspectionTime() {
|
||||
return inspectionTime;
|
||||
}
|
||||
|
||||
public void setInspectionTime(LocalDateTime inspectionTime) {
|
||||
this.inspectionTime = inspectionTime;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator == null ? null : creator.trim();
|
||||
}
|
||||
|
||||
public String getUpdator() {
|
||||
return updator;
|
||||
}
|
||||
|
||||
public void setUpdator(String updator) {
|
||||
this.updator = updator == null ? null : updator.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Boolean getDeleted() {
|
||||
return deleted;
|
||||
}
|
||||
|
||||
public void setDeleted(Boolean deleted) {
|
||||
this.deleted = deleted;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime == null ? null : createTime.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(LocalDateTime updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
package com.cool.store.entity;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
public class HyInterviewInspectionLog {
|
||||
private Long id;
|
||||
|
||||
private String operatorUserId;
|
||||
|
||||
private Long inspectionId;
|
||||
|
||||
private Byte operationType;
|
||||
|
||||
private String description;
|
||||
|
||||
private String files;
|
||||
|
||||
private LocalDateTime operationTime;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String createTime;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
public HyInterviewInspectionLog(Long id, String operatorUserId, Long inspectionId, Byte operationType, String description, String files, LocalDateTime operationTime, String remark, String createTime, LocalDateTime updateTime) {
|
||||
this.id = id;
|
||||
this.operatorUserId = operatorUserId;
|
||||
this.inspectionId = inspectionId;
|
||||
this.operationType = operationType;
|
||||
this.description = description;
|
||||
this.files = files;
|
||||
this.operationTime = operationTime;
|
||||
this.remark = remark;
|
||||
this.createTime = createTime;
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
public HyInterviewInspectionLog() {
|
||||
super();
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOperatorUserId() {
|
||||
return operatorUserId;
|
||||
}
|
||||
|
||||
public void setOperatorUserId(String operatorUserId) {
|
||||
this.operatorUserId = operatorUserId == null ? null : operatorUserId.trim();
|
||||
}
|
||||
|
||||
public Long getInspectionId() {
|
||||
return inspectionId;
|
||||
}
|
||||
|
||||
public void setInspectionId(Long inspectionId) {
|
||||
this.inspectionId = inspectionId;
|
||||
}
|
||||
|
||||
public Byte getOperationType() {
|
||||
return operationType;
|
||||
}
|
||||
|
||||
public void setOperationType(Byte operationType) {
|
||||
this.operationType = operationType;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
|
||||
public String getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
public void setFiles(String files) {
|
||||
this.files = files == null ? null : files.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getOperationTime() {
|
||||
return operationTime;
|
||||
}
|
||||
|
||||
public void setOperationTime(LocalDateTime operationTime) {
|
||||
this.operationTime = operationTime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime == null ? null : createTime.trim();
|
||||
}
|
||||
|
||||
public LocalDateTime getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(LocalDateTime updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user