| | |
| | | package org.dromara.demo.domain.vo; |
| | | |
| | | import java.math.BigDecimal; |
| | | import org.dromara.demo.domain.RsPcrData; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import org.dromara.common.excel.annotation.ExcelDictFormat; |
| | | import org.dromara.common.excel.convert.ExcelDictConvert; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | import org.dromara.demo.domain.RsPcrData; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | |
| | | * 周期 |
| | | */ |
| | | @ExcelProperty(value = "周期") |
| | | private String periodName; |
| | | private Long period; |
| | | |
| | | /** |
| | | * 周期年 |
| | | */ |
| | | @ExcelProperty(value = "周期年") |
| | | private String periodYear; |
| | | private String periodDate; |
| | | |
| | | /** |
| | | * 周期月 |
| | | */ |
| | | @ExcelProperty(value = "周期月") |
| | | private Long periodMonth; |
| | | @ExcelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 指标1名称 |
| | |
| | | * 指标1值 |
| | | */ |
| | | @ExcelProperty(value = "指标1值") |
| | | private BigDecimal indexOneValue; |
| | | private String indexOneValue; |
| | | |
| | | /** |
| | | * 指标2名称 |
| | |
| | | * 指标2值 |
| | | */ |
| | | @ExcelProperty(value = "指标2值") |
| | | private BigDecimal indexTwoValue; |
| | | private String indexTwoValue; |
| | | |
| | | /** |
| | | * 指标3名称 |
| | |
| | | * 指标3值 |
| | | */ |
| | | @ExcelProperty(value = "指标3值") |
| | | private BigDecimal indexThreeValue; |
| | | private String indexThreeValue; |
| | | |
| | | /** |
| | | * 指标4名称 |
| | |
| | | * 指标4值 |
| | | */ |
| | | @ExcelProperty(value = "指标4值") |
| | | private BigDecimal indexFourValue; |
| | | private String indexFourValue; |
| | | |
| | | /** |
| | | * 状态 1启用 0未启用 |