157 lines
3.3 KiB
Java
157 lines
3.3 KiB
Java
package com.music.metadata.infrastructure.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
@TableName("t_fail_file")
|
|
public class FailFileEntity implements Serializable {
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
@TableField("file_process_id")
|
|
private Long fileProcessId;
|
|
|
|
@TableField("file_hash")
|
|
private String fileHash;
|
|
|
|
@TableField("source_file_path")
|
|
private String sourceFilePath;
|
|
|
|
@TableField("file_name")
|
|
private String fileName;
|
|
|
|
@TableField("fail_type")
|
|
private String failType;
|
|
|
|
@TableField("fail_detail")
|
|
private String failDetail;
|
|
|
|
@TableField("raw_metadata")
|
|
private String rawMetadata;
|
|
|
|
@TableField("edit_metadata")
|
|
private String editMetadata;
|
|
|
|
@TableField("status")
|
|
private String status;
|
|
|
|
@TableField("created_at")
|
|
private LocalDateTime createdAt;
|
|
|
|
@TableField("updated_at")
|
|
private LocalDateTime updatedAt;
|
|
|
|
@TableField("resolved_at")
|
|
private LocalDateTime resolvedAt;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getFileProcessId() {
|
|
return fileProcessId;
|
|
}
|
|
|
|
public void setFileProcessId(Long fileProcessId) {
|
|
this.fileProcessId = fileProcessId;
|
|
}
|
|
|
|
public String getFileHash() {
|
|
return fileHash;
|
|
}
|
|
|
|
public void setFileHash(String fileHash) {
|
|
this.fileHash = fileHash;
|
|
}
|
|
|
|
public String getSourceFilePath() {
|
|
return sourceFilePath;
|
|
}
|
|
|
|
public void setSourceFilePath(String sourceFilePath) {
|
|
this.sourceFilePath = sourceFilePath;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return fileName;
|
|
}
|
|
|
|
public void setFileName(String fileName) {
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
public String getFailType() {
|
|
return failType;
|
|
}
|
|
|
|
public void setFailType(String failType) {
|
|
this.failType = failType;
|
|
}
|
|
|
|
public String getFailDetail() {
|
|
return failDetail;
|
|
}
|
|
|
|
public void setFailDetail(String failDetail) {
|
|
this.failDetail = failDetail;
|
|
}
|
|
|
|
public String getRawMetadata() {
|
|
return rawMetadata;
|
|
}
|
|
|
|
public void setRawMetadata(String rawMetadata) {
|
|
this.rawMetadata = rawMetadata;
|
|
}
|
|
|
|
public String getEditMetadata() {
|
|
return editMetadata;
|
|
}
|
|
|
|
public void setEditMetadata(String editMetadata) {
|
|
this.editMetadata = editMetadata;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public LocalDateTime getCreatedAt() {
|
|
return createdAt;
|
|
}
|
|
|
|
public void setCreatedAt(LocalDateTime createdAt) {
|
|
this.createdAt = createdAt;
|
|
}
|
|
|
|
public LocalDateTime getUpdatedAt() {
|
|
return updatedAt;
|
|
}
|
|
|
|
public void setUpdatedAt(LocalDateTime updatedAt) {
|
|
this.updatedAt = updatedAt;
|
|
}
|
|
|
|
public LocalDateTime getResolvedAt() {
|
|
return resolvedAt;
|
|
}
|
|
|
|
public void setResolvedAt(LocalDateTime resolvedAt) {
|
|
this.resolvedAt = resolvedAt;
|
|
}
|
|
}
|