EnergyWater.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.huimv.admin.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import lombok.experimental.Accessors;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author author
  15. * @since 2023-02-14
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. @TableName("energy_water")
  21. public class EnergyWater implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 计录值
  27. */
  28. private String waterValue;
  29. /**
  30. * 原始值
  31. */
  32. private String originalValue;
  33. /**
  34. * 原始数据
  35. */
  36. private String originalDate;
  37. /**
  38. * 房舍id
  39. */
  40. private Integer unitId;
  41. private Integer farmId;
  42. private String other1;
  43. private String other2;
  44. private String other3;
  45. }