package com.doumee.dao.business.vo;
|
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/7/13 10:40
|
*/
|
@Data
|
@ApiModel("DCA主题观察项导出信息")
|
public class CategoryDcaProblemDto {
|
@ApiModelProperty(value = "序号")
|
@ExcelColumn(name="序号",index =1 ,width = 4)
|
private Long index;
|
@ApiModelProperty(value = "一级主题")
|
@ExcelColumn(name="一级观察主题",index =2 ,width = 10)
|
private String parentName;
|
@ApiModelProperty("二级观察主题")
|
@ExcelColumn(name="二级观察主题",index =3,width = 10)
|
private String typeName;
|
@ApiModelProperty(value = "观察项" )
|
@ExcelColumn(name="观察项",index =4,width = 40 )
|
private String problem;
|
|
}
|