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