Commit e9af1822 authored by liaoanyuan's avatar liaoanyuan

方案Excel导出功能修改

parent 1b5cad91
......@@ -42,13 +42,6 @@ public class VolunteerDto implements Serializable {
@ApiModelProperty(value = "方案id", name = "schemeId")
private Integer schemeId;
/**
* 用户名称
*/
@ApiModelProperty(name = "name", value = "用户名")
@ExcelProperty(value = "用户名")
private String userName;
/**
* 专业名称
*/
......
......@@ -263,7 +263,6 @@ public class SchemeRecordServiceImpl extends ServiceImpl<SchemeRecordMapper, Sch
List<VolunteerDto> resultBo = result.stream().filter(Objects::nonNull)
.map(t -> {
return VolunteerDto.builder()
.userName(name)
.majorName(t.getMajorName())
.academy(t.getAcademy())
.courseDemand(t.getCourseDemand())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment