StationInfoDay.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.gyee.runeconomy.model.auto;
  2. import java.math.BigDecimal;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.baomidou.mybatisplus.annotation.IdType;
  5. import java.time.LocalDate;
  6. import com.baomidou.mybatisplus.annotation.TableId;
  7. import java.io.Serializable;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. import lombok.experimental.Accessors;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author xujuanning
  17. * @since 2024-11-28
  18. */
  19. @Data
  20. @EqualsAndHashCode(callSuper = false)
  21. @Accessors(chain = true)
  22. @TableName("station_info_day")
  23. public class StationInfoDay implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. /**
  26. * 编号
  27. */
  28. @TableId(value = "id", type = IdType.AUTO)
  29. private Long id;
  30. /**
  31. * 场站
  32. */
  33. private String stationId;
  34. /**
  35. * 时间
  36. */
  37. private LocalDate recordDate;
  38. /**
  39. * 安全天数
  40. */
  41. private Integer aqts;
  42. private Integer swdl;
  43. private Integer gwdl;
  44. private Integer cydl;
  45. private Integer rfdl;
  46. private Integer zhcydl;
  47. private BigDecimal hjwd;
  48. private BigDecimal rfdlFj;
  49. /**
  50. * 站用变
  51. */
  52. private Integer zyb;
  53. /**
  54. * 计划发电量
  55. */
  56. private BigDecimal jhfdl;
  57. }