package org.dromara.demo.domain.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
import org.dromara.demo.domain.RsTrafficIndex;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
|
/**
|
* 交通指数视图对象 rs_traffic_index
|
*
|
* @author Lion Li
|
* @date 2024-02-26
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = RsTrafficIndex.class)
|
public class RsTrafficIndexVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@ExcelProperty(value = "主键id")
|
private Long id;
|
|
/**
|
* 模块名称
|
*/
|
@ExcelProperty(value = "模块名称")
|
private String modeName;
|
|
/**
|
* 指标1名称
|
*/
|
@ExcelProperty(value = "指标1名称")
|
private String targetOneName;
|
|
/**
|
* 指标1值
|
*/
|
@ExcelProperty(value = "指标1值")
|
private String targetOneValue;
|
|
/**
|
* 指标1单位
|
*/
|
@ExcelProperty(value = "指标1单位")
|
private String targetOneUnit;
|
|
/**
|
* 指标1状态 1 上浮 2下降
|
*/
|
@ExcelProperty(value = "指标1状态 1 上浮 2下降")
|
private Integer targetOneStatus;
|
|
/**
|
* 指标1上浮或下降值
|
*/
|
@ExcelProperty(value = "指标1上浮或下降值")
|
private String targetOneCompareValue;
|
|
/**
|
* 指标2名称
|
*/
|
@ExcelProperty(value = "指标2名称")
|
private String targetTwoName;
|
|
/**
|
* 指标2值
|
*/
|
@ExcelProperty(value = "指标2值")
|
private String targetTwoValue;
|
|
/**
|
* 指标2单位
|
*/
|
@ExcelProperty(value = "指标2单位")
|
private String targetTwoUnit;
|
|
/**
|
* 指标2状态 1 上浮 2下降
|
*/
|
@ExcelProperty(value = "指标2状态 1 上浮 2下降")
|
private Integer targetTwoStatus;
|
|
/**
|
* 指标2上浮或下降值
|
*/
|
@ExcelProperty(value = "指标2上浮或下降值")
|
private String targetTwoCompareValue;
|
|
/**
|
* 指标3名称
|
*/
|
@ExcelProperty(value = "指标3名称")
|
private String targetThreeName;
|
|
/**
|
* 指标3值
|
*/
|
@ExcelProperty(value = "指标3值")
|
private String targetThreeValue;
|
|
/**
|
* 指标3单位
|
*/
|
@ExcelProperty(value = "指标3单位")
|
private String targetThreeUnit;
|
|
/**
|
* 指标3状态 1 上浮 2下降
|
*/
|
@ExcelProperty(value = "指标3状态 1 上浮 2下降")
|
private Integer targetThreeStatus;
|
|
/**
|
* 指标3上浮或下降值
|
*/
|
@ExcelProperty(value = "指标3上浮或下降值")
|
private String targetThreeCompareValue;
|
|
/**
|
* 指标4名称
|
*/
|
@ExcelProperty(value = "指标4名称")
|
private String targetFourName;
|
|
/**
|
* 指标4值
|
*/
|
@ExcelProperty(value = "指标4值")
|
private String targetFourValue;
|
|
/**
|
* 指标4单位
|
*/
|
@ExcelProperty(value = "指标4单位")
|
private String targetFourUnit;
|
|
/**
|
* 指标4状态 1 上浮 2下降
|
*/
|
@ExcelProperty(value = "指标4状态 1 上浮 2下降")
|
private Integer targetFourStatus;
|
|
/**
|
* 指标4上浮或下降值
|
*/
|
@ExcelProperty(value = "指标4上浮或下降值")
|
private String targetFourCompareValue;
|
|
/**
|
* 启用状态 1启用 2未启用
|
*/
|
@ExcelProperty(value = "启用状态 1启用 2未启用")
|
private Integer status;
|
|
/**
|
* 周期
|
*/
|
@ExcelProperty(value = "周期")
|
private Long period;
|
|
/**
|
* 周期年
|
*/
|
@ExcelProperty(value = "周期值")
|
private String periodDate;
|
|
/**
|
* 创建时间
|
*/
|
@ExcelProperty(value = "创建时间")
|
private Date createTime;
|
|
private String targetOneIcon;
|
private String targetTwoIcon;
|
private String targetThreeIcon;
|
private String targetFourIcon;
|
|
}
|