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_traffic_index * * @author Lion Li * @date 2024-02-26 */ @Data //@EqualsAndHashCode(callSuper = true) @TableName("rs_traffic_index") public class RsTrafficIndex { @Serial private static final long serialVersionUID = 1L; /** * 主键id */ @TableId(value = "id") private Long id; /** * 模块名称 */ private String modeName; /** * 指标1名称 */ private String targetOneName; /** * 指标1值 */ private BigDecimal targetOneValue; /** * 指标1单位 */ private String targetOneUnit; /** * 指标1状态 1 上浮 2下降 */ private Integer targetOneStatus; /** * 指标1上浮或下降值 */ private BigDecimal targetOneCompareValue; /** * 指标2名称 */ private String targetTwoName; /** * 指标2值 */ private BigDecimal targetTwoValue; /** * 指标2单位 */ private String targetTwoUnit; /** * 指标2状态 1 上浮 2下降 */ private Integer targetTwoStatus; /** * 指标2上浮或下降值 */ private BigDecimal targetTwoCompareValue; /** * 指标3名称 */ private String targetThreeName; /** * 指标3值 */ private BigDecimal targetThreeValue; /** * 指标3单位 */ private String targetThreeUnit; /** * 指标3状态 1 上浮 2下降 */ private Integer targetThreeStatus; /** * 指标3上浮或下降值 */ private BigDecimal targetThreeCompareValue; /** * 指标4名称 */ private String targetFourName; /** * 指标4值 */ private BigDecimal targetFourValue; /** * 指标4单位 */ private String targetFourUnit; /** * 指标4状态 1 上浮 2下降 */ private Integer targetFourStatus; /** * 指标4上浮或下降值 */ private BigDecimal targetFourCompareValue; /** * 启用状态 1启用 2未启用 */ private Integer status; /** * 周期 */ private String periodName; /** * 周期年 */ private Integer periodYear; /** * 周期月 */ private Integer periodMonth; }