VppEnergyReadingMonthly.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.LocalDateTime;
  11. /**
  12. * vpp_energy_reading_monthly
  13. */
  14. @Data
  15. @EqualsAndHashCode(callSuper = false)
  16. @TableName("vpp_energy_reading_monthly")
  17. public class VppEnergyReadingMonthly implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Long id;
  21. @TableField("customer_id")
  22. private Long customerId;
  23. @TableField(exist = false)
  24. private String customerName;
  25. @TableField("site_id")
  26. private Long siteId;
  27. @TableField(exist = false)
  28. private String siteName;
  29. @TableField("settle_year")
  30. private String settleYear;
  31. @TableField("settle_month")
  32. private Integer settleMonth;
  33. @TableField("total_energy_kwh")
  34. private BigDecimal totalEnergyKwh;
  35. @TableField("peak_energy_kwh")
  36. private BigDecimal peakEnergyKwh;
  37. @TableField("flat_energy_kwh")
  38. private BigDecimal flatEnergyKwh;
  39. @TableField("valley_energy_kwh")
  40. private BigDecimal valleyEnergyKwh;
  41. @TableField("sharp_energy_kwh")
  42. private BigDecimal sharpEnergyKwh;
  43. @TableField("gen_energy_kwh")
  44. private BigDecimal genEnergyKwh;
  45. @TableField("calc_status")
  46. private Integer calcStatus;
  47. @TableField("calc_at")
  48. private LocalDateTime calcAt;
  49. @TableField("tenant_id")
  50. private Integer tenantId;
  51. @TableField("create_time")
  52. private LocalDateTime createTime;
  53. @TableField("update_time")
  54. private LocalDateTime updateTime;
  55. @TableField("created_by")
  56. private String createdBy;
  57. @TableField("updated_by")
  58. private String updatedBy;
  59. @TableField("delete_flag")
  60. private Integer deleteFlag;
  61. @TableField("deleted_at")
  62. private LocalDateTime deletedAt;
  63. }