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