36 lines
1022 B
Java
36 lines
1022 B
Java
package io.renren.modules.demo.excel;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 选题表
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.0.0 2025-03-06
|
|
*/
|
|
@Data
|
|
public class SubjectSelectionExcel {
|
|
@ExcelProperty(value = "选题描述")
|
|
private Long id;
|
|
@ExcelProperty(value = "选题名称")
|
|
private String title;
|
|
@ExcelProperty(value = "选题描述")
|
|
private String description;
|
|
@ExcelProperty(value = "选题描述")
|
|
private String teacher;
|
|
@ExcelProperty(value = "适用专业")
|
|
private String major;
|
|
@ExcelProperty(value = "选题难度")
|
|
private String difficulty;
|
|
@ExcelProperty(value = "选题状态")
|
|
private String status;
|
|
@ExcelProperty(value = "创建时间")
|
|
private Date createTime;
|
|
|
|
} |