提交 72915b04 authored 作者: zhouzhigang's avatar zhouzhigang

--no commit message

上级 d01c6c2a
package com.zrqx.core.vo.schoolsysuser.fg.basicteachingplan;
import com.zrqx.core.model.school.export.ExportModel;
import com.zrqx.core.util.excelutil.ExcelResources;
import com.zrqx.core.util.excelutil.ExcelSheetParams;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ExcelSheetParams(startRow = 2)
@ApiModel(value = "BasicPlanErrVo",description = "培养层次错误信息列表vo")
public class BasicPlanErrVo extends ExportModel{
@ExcelResources(title="学级")
private Integer academicLevel;
@ExcelResources(title="部门名称")
private String departmentName;
@ExcelResources(title="专业名称")
private String majorName;
@ExcelResources(title="专业代码")
private String code;
@ApiModelProperty("生源")
private String studentResource;
@ApiModelProperty("学制")
private Integer educationalSystem;
@ApiModelProperty("定向培养(非必填)")
private Integer train;
}
package com.zrqx.core.vo.schoolsysuser.fg.basicteachingplan;
import java.util.List;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "ExportPlanErrVo",description = "培养层次错误信息导出vo")
public class ExportPlanErrVo {
@ApiModelProperty("错误信息id")
private Integer errId;
@ApiModelProperty("错误信息集合")
private List<BasicPlanErrVo> list;
}
package com.zrqx.core.vo.schoolsysuser.fg.basicteachingplan;
import com.zrqx.core.util.excelutil.ExcelResources;
import com.zrqx.core.util.excelutil.ExcelSheetParams;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 基础教学计划导入表头
* @author zzg
* @date 2019年7月29日上午9:47:55
*/
@Data
@ExcelSheetParams(startRow = 2)
public class ImportPlanExcelVo {
@ExcelResources(title="学级")
private Integer academicLevel;
@ExcelResources(title="部门名称")
private String departmentName;
@ExcelResources(title="专业名称")
private String majorName;
@ExcelResources(title="专业代码")
private String code;
@ExcelResources(title="生源")
private String studentResource;
@ExcelResources(title="学制")
private Integer educationalSystem;
@ExcelResources(title="定向培养")
private String train;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论