MrShi
2025-08-19 ff087240b3dee29ce4e14ad0836e76b9fdf312cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
 
}