package org.dromara.demo.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.util.Date;
|
|
/**
|
* 人车路基础信息对象 rs_pcr_data
|
*
|
* @author Lion Li
|
* @date 2024-02-27
|
*/
|
@Data
|
@TableName("rs_pcr_data")
|
public class RsPcrData {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@TableId(value = "id")
|
private Long id;
|
|
/**
|
* 模块名称
|
*/
|
private String modeName;
|
|
/**
|
* 周期
|
*/
|
private Long period;
|
|
/**
|
* 周期年
|
*/
|
private String periodDate;
|
|
private Date createTime;
|
|
/**
|
* 指标1名称
|
*/
|
private String indexOneName;
|
|
/**
|
* 指标1值
|
*/
|
private String indexOneValue;
|
|
/**
|
* 指标2名称
|
*/
|
private String indexTwoName;
|
|
/**
|
* 指标2值
|
*/
|
private String indexTwoValue;
|
|
/**
|
* 指标3名称
|
*/
|
private String indexThreeName;
|
|
/**
|
* 指标3值
|
*/
|
private String indexThreeValue;
|
|
/**
|
* 指标4名称
|
*/
|
private String indexFourName;
|
|
/**
|
* 指标4值
|
*/
|
private String indexFourValue;
|
|
/**
|
* 状态 1启用 0未启用
|
*/
|
private Long status;
|
|
|
}
|