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.RsPcrData;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
|
/**
|
* 人车路基础信息视图对象 rs_pcr_data
|
*
|
* @author Lion Li
|
* @date 2024-02-27
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = RsPcrData.class)
|
public class RsPcrDataVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
private Long id;
|
|
/**
|
* 模块名称
|
*/
|
@ExcelProperty(value = "模块名称")
|
private String modeName;
|
|
/**
|
* 周期
|
*/
|
@ExcelProperty(value = "周期")
|
private Long period;
|
|
/**
|
* 周期年
|
*/
|
@ExcelProperty(value = "周期年")
|
private String periodDate;
|
|
@ExcelProperty(value = "创建时间")
|
private Date createTime;
|
|
/**
|
* 指标1名称
|
*/
|
@ExcelProperty(value = "指标1名称")
|
private String indexOneName;
|
|
/**
|
* 指标1值
|
*/
|
@ExcelProperty(value = "指标1值")
|
private String indexOneValue;
|
|
/**
|
* 指标2名称
|
*/
|
@ExcelProperty(value = "指标2名称")
|
private String indexTwoName;
|
|
/**
|
* 指标2值
|
*/
|
@ExcelProperty(value = "指标2值")
|
private String indexTwoValue;
|
|
/**
|
* 指标3名称
|
*/
|
@ExcelProperty(value = "指标3名称")
|
private String indexThreeName;
|
|
/**
|
* 指标3值
|
*/
|
@ExcelProperty(value = "指标3值")
|
private String indexThreeValue;
|
|
/**
|
* 指标4名称
|
*/
|
@ExcelProperty(value = "指标4名称")
|
private String indexFourName;
|
|
/**
|
* 指标4值
|
*/
|
@ExcelProperty(value = "指标4值")
|
private String indexFourValue;
|
|
/**
|
* 状态 1启用 0未启用
|
*/
|
@ExcelProperty(value = "状态 1启用 0未启用")
|
private Long status;
|
|
|
}
|