代码提交
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.srs.survey.domain.dto;
|
||||
|
||||
import com.srs.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class LeaveExport {
|
||||
@Excel(name = "主题")
|
||||
public String surveyName;
|
||||
@Excel(name = "班级")
|
||||
public String className;
|
||||
@Excel(name = "学号")
|
||||
public String stuNo;
|
||||
@Excel(name = "姓名")
|
||||
public String name;
|
||||
@Excel(name = "学生状态")
|
||||
public String status;
|
||||
@Excel(name = "是否填写")
|
||||
public String editStatus;
|
||||
}
|
||||
Reference in New Issue
Block a user