VppEnergySummaryDaily.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.usky.vpp.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import java.io.Serializable;
  9. import java.math.BigDecimal;
  10. import java.time.LocalDate;
  11. import java.time.LocalDateTime;
  12. /**
  13. * vpp_energy_summary_daily
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = false)
  17. @TableName("vpp_energy_summary_daily")
  18. public class VppEnergySummaryDaily implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. @TableField("summary_date")
  23. private LocalDate summaryDate;
  24. @TableField("resource_id")
  25. private Long resourceId;
  26. @TableField("resource_type")
  27. private String resourceType;
  28. @TableField("gen_energy_kwh")
  29. private BigDecimal genEnergyKwh;
  30. @TableField("use_energy_kwh")
  31. private BigDecimal useEnergyKwh;
  32. @TableField("green_ratio")
  33. private BigDecimal greenRatio;
  34. @TableField("max_power_kw")
  35. private BigDecimal maxPowerKw;
  36. @TableField("avg_power_kw")
  37. private BigDecimal avgPowerKw;
  38. @TableField("tenant_id")
  39. private Integer tenantId;
  40. @TableField("create_time")
  41. private LocalDateTime createTime;
  42. @TableField("update_time")
  43. private LocalDateTime updateTime;
  44. @TableField("created_by")
  45. private String createdBy;
  46. @TableField("updated_by")
  47. private String updatedBy;
  48. @TableField("delete_flag")
  49. private Integer deleteFlag;
  50. @TableField("deleted_at")
  51. private LocalDateTime deletedAt;
  52. }