龚焕茏
2024-03-07 9729be1a0b96b422acd1897d01e4966a47f53042
dujy-modules/dujy-demo/src/main/java/org/dromara/demo/domain/RsTrafficIndex.java
@@ -1,12 +1,11 @@
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_traffic_index
@@ -15,7 +14,6 @@
 * @date 2024-02-26
 */
@Data
//@EqualsAndHashCode(callSuper = true)
@TableName("rs_traffic_index")
public class RsTrafficIndex  {
@@ -41,7 +39,7 @@
    /**
     * 指标1值
     */
    private BigDecimal targetOneValue;
    private String targetOneValue;
    /**
     * 指标1单位
@@ -56,7 +54,7 @@
    /**
     * 指标1上浮或下降值
     */
    private BigDecimal targetOneCompareValue;
    private String targetOneCompareValue;
    /**
     * 指标2名称
@@ -66,7 +64,7 @@
    /**
     * 指标2值
     */
    private BigDecimal targetTwoValue;
    private String targetTwoValue;
    /**
     * 指标2单位
@@ -81,7 +79,7 @@
    /**
     * 指标2上浮或下降值
     */
    private BigDecimal targetTwoCompareValue;
    private String targetTwoCompareValue;
    /**
     * 指标3名称
@@ -91,7 +89,7 @@
    /**
     * 指标3值
     */
    private BigDecimal targetThreeValue;
    private String targetThreeValue;
    /**
     * 指标3单位
@@ -106,7 +104,7 @@
    /**
     * 指标3上浮或下降值
     */
    private BigDecimal targetThreeCompareValue;
    private String targetThreeCompareValue;
    /**
     * 指标4名称
@@ -116,7 +114,7 @@
    /**
     * 指标4值
     */
    private BigDecimal targetFourValue;
    private String targetFourValue;
    /**
     * 指标4单位
@@ -131,7 +129,7 @@
    /**
     * 指标4上浮或下降值
     */
    private BigDecimal targetFourCompareValue;
    private String targetFourCompareValue;
    /**
     * 启用状态 1启用 2未启用
@@ -141,18 +139,13 @@
    /**
     * 周期
     */
    private String periodName;
    private Long period;
    /**
     * 周期年
     */
    private Integer periodYear;
    /**
     * 周期月
     */
    private Integer periodMonth;
    private String periodDate;
    private Date createTime;
}