91 lines
1.6 KiB
Java
91 lines
1.6 KiB
Java
package com.example.exam.exam.dal;
|
||
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import lombok.Data;
|
||
import lombok.experimental.Accessors;
|
||
|
||
/**
|
||
* 文件(hyc)对象 exam_question_file
|
||
*
|
||
* @author pengchen
|
||
* @date 2025-03-18
|
||
*/
|
||
@TableName(value = "exam_question_file", autoResultMap = true)
|
||
@Data
|
||
@Accessors(chain = true)
|
||
public class ExamQuestionFile {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/**
|
||
* 文件id
|
||
*/
|
||
@TableId
|
||
private String fileId;
|
||
|
||
/**
|
||
* 试题id
|
||
*/
|
||
// @Excel(name = "试题id")
|
||
private String quId;
|
||
|
||
|
||
|
||
/**
|
||
* 文件名(完整)
|
||
*/
|
||
// @Excel(name = "文件名(完整)")
|
||
private String url;
|
||
|
||
|
||
/**
|
||
* 文件类型(0:素材,1:原始,2:结果)
|
||
*/
|
||
// @Excel(name = "文件类型(0:素材,1:原始,2:结果)")
|
||
private String fileType;
|
||
|
||
private String fileName;
|
||
|
||
|
||
public String getFileId() {
|
||
return fileId;
|
||
}
|
||
|
||
public void setFileId(String fileId) {
|
||
this.fileId = fileId;
|
||
}
|
||
|
||
public String getQuId() {
|
||
return quId;
|
||
}
|
||
|
||
public void setQuId(String quId) {
|
||
this.quId = quId;
|
||
}
|
||
|
||
public String getUrl() {
|
||
return url;
|
||
}
|
||
|
||
public void setUrl(String url) {
|
||
this.url = url;
|
||
}
|
||
|
||
public String getFileType() {
|
||
return fileType;
|
||
}
|
||
|
||
public void setFileType(String fileType) {
|
||
this.fileType = fileType;
|
||
}
|
||
|
||
public String getFileName() {
|
||
return fileName;
|
||
}
|
||
|
||
public void setFileName(String fileName) {
|
||
this.fileName = fileName;
|
||
}
|
||
}
|