PlatBuildYearTrend.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.project.zcustom.domain.build;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.project.common.annotation.Excel;
  5. import com.project.common.core.domain.CustomBaseEntity;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import lombok.ToString;
  9. import lombok.experimental.Accessors;
  10. import java.math.BigDecimal;
  11. /**
  12. * 年度趋势变化数据对象 plat_build_year_trend
  13. *
  14. * @author change
  15. * @date 2024-11-01
  16. */
  17. @Data
  18. @Accessors(chain = true)
  19. @ToString(callSuper = true)
  20. @EqualsAndHashCode(callSuper = false)
  21. @TableName("large_plat_build_year_trend")
  22. public class PlatBuildYearTrend extends CustomBaseEntity {
  23. /**
  24. * 主键id
  25. */
  26. @TableId(value = "id")
  27. private Long id;
  28. /**
  29. * 地区编码
  30. */
  31. @Excel(name = "地区编码")
  32. private String appOrg;
  33. /**
  34. * 月份
  35. */
  36. @Excel(name = "月份")
  37. private String monthString;
  38. /**
  39. * 当年值
  40. */
  41. @Excel(name = "当年值")
  42. private BigDecimal currentValue;
  43. /**
  44. * 去年值
  45. */
  46. @Excel(name = "去年值")
  47. private BigDecimal lastYearValue;
  48. /**
  49. * 当年年份
  50. */
  51. @Excel(name = "当年年份")
  52. private String currentYear;
  53. /**
  54. * 去年年份
  55. */
  56. @Excel(name = "去年年份")
  57. private String lastYear;
  58. /**
  59. * 0 碳排放量月度变化趋势1 年度综合能耗变化趋势图 2 年度电耗变化趋势图 3 年度水耗趋势接口 4 年度非供暖能耗趋势
  60. */
  61. @Excel(name = "0 碳排放量月度变化趋势1 年度综合能耗变化趋势图 2 年度电耗变化趋势图 3 年度水耗趋势接口 4 年度非供暖能耗趋势")
  62. private Integer type;
  63. }