EnvThreshold.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 2024-08-23
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. @TableName("env_threshold")
  21. public class EnvThreshold 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 tempUpper;
  29. /**
  30. * 温度下限
  31. */
  32. private String tempDown;
  33. /**
  34. * 湿度上线
  35. */
  36. private String humUpper;
  37. /**
  38. * 湿度下限
  39. */
  40. private String humDown;
  41. /**
  42. * 氧气上线
  43. */
  44. private String oxygenUpper;
  45. /**
  46. * 氧气下限
  47. */
  48. private String oxygenDown;
  49. /**
  50. * 硫化氢上线
  51. */
  52. private String h2sUpper;
  53. /**
  54. * 硫化氢下限
  55. */
  56. private String h2sDown;
  57. /**
  58. * 光照上线
  59. */
  60. private String lightUpper;
  61. /**
  62. * 光照下限
  63. */
  64. private String lightDown;
  65. /**
  66. * 牧场编码
  67. */
  68. private Integer farmId;
  69. }