龚焕茏
2024-03-04 0a71321f86d46ac4a8335a0c38a493fd62664c25
dujy-modules/dujy-demo/src/main/java/org/dromara/demo/domain/vo/RsTrafficIndexVo.java
@@ -1,13 +1,10 @@
package org.dromara.demo.domain.vo;
import java.math.BigDecimal;
import org.dromara.demo.domain.RsTrafficIndex;
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.RsTrafficIndex;
import java.io.Serial;
import java.io.Serializable;
@@ -51,7 +48,7 @@
     * 指标1值
     */
    @ExcelProperty(value = "指标1值")
    private BigDecimal targetOneValue;
    private String targetOneValue;
    /**
     * 指标1单位
@@ -69,7 +66,7 @@
     * 指标1上浮或下降值
     */
    @ExcelProperty(value = "指标1上浮或下降值")
    private BigDecimal targetOneCompareValue;
    private String targetOneCompareValue;
    /**
     * 指标2名称
@@ -81,7 +78,7 @@
     * 指标2值
     */
    @ExcelProperty(value = "指标2值")
    private BigDecimal targetTwoValue;
    private String targetTwoValue;
    /**
     * 指标2单位
@@ -99,7 +96,7 @@
     * 指标2上浮或下降值
     */
    @ExcelProperty(value = "指标2上浮或下降值")
    private BigDecimal targetTwoCompareValue;
    private String targetTwoCompareValue;
    /**
     * 指标3名称
@@ -111,7 +108,7 @@
     * 指标3值
     */
    @ExcelProperty(value = "指标3值")
    private BigDecimal targetThreeValue;
    private String targetThreeValue;
    /**
     * 指标3单位
@@ -129,7 +126,7 @@
     * 指标3上浮或下降值
     */
    @ExcelProperty(value = "指标3上浮或下降值")
    private BigDecimal targetThreeCompareValue;
    private String targetThreeCompareValue;
    /**
     * 指标4名称
@@ -141,7 +138,7 @@
     * 指标4值
     */
    @ExcelProperty(value = "指标4值")
    private BigDecimal targetFourValue;
    private String targetFourValue;
    /**
     * 指标4单位
@@ -159,7 +156,7 @@
     * 指标4上浮或下降值
     */
    @ExcelProperty(value = "指标4上浮或下降值")
    private BigDecimal targetFourCompareValue;
    private String targetFourCompareValue;
    /**
     * 启用状态 1启用 2未启用
@@ -171,19 +168,19 @@
     * 周期
     */
    @ExcelProperty(value = "周期")
    private String periodName;
    private Long period;
    /**
     * 周期月
     */
    @ExcelProperty(value = "周期值")
    private Integer periodMonth;
    /**
     * 周期年
     */
    @ExcelProperty(value = "周期值")
    private Integer periodYear;
    private String periodDate;
    /**
     * 创建时间
     */
    @ExcelProperty(value = "创建时间")
    private Date createTime;
}