GasData.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.util.Date;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import com.fasterxml.jackson.annotation.JsonFormat;
  9. import lombok.Data;
  10. import lombok.EqualsAndHashCode;
  11. import lombok.experimental.Accessors;
  12. /**
  13. * <p>
  14. *
  15. * </p>
  16. *
  17. * @author author
  18. * @since 2023-02-21
  19. */
  20. @Data
  21. @EqualsAndHashCode(callSuper = false)
  22. @Accessors(chain = true)
  23. @TableName("gas_data")
  24. public class GasData implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 1屋顶 2厂界上 3厂界下 4厂界居民
  30. */
  31. private Integer loctionType;
  32. /**
  33. * NH3-N
  34. */
  35. private String nh3N;
  36. /**
  37. * 甲硫醚
  38. */
  39. private String jlm;
  40. /**
  41. * 二硫化碳
  42. */
  43. private String elht;
  44. /**
  45. * 二甲二硫
  46. */
  47. private String ejel;
  48. /**
  49. * H2S
  50. */
  51. private String h2s;
  52. /**
  53. * 苯乙烯
  54. */
  55. private String byx;
  56. /**
  57. * CH3SH
  58. */
  59. private String ch3sh;
  60. /**
  61. * 三甲胺
  62. */
  63. private String sja;
  64. /**
  65. * 臭气
  66. */
  67. private String cq;
  68. /**
  69. * 记录原始值
  70. */
  71. private String originalData;
  72. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  73. private Date createTime;
  74. private String other1;
  75. private String other2;
  76. private String other3;
  77. private Integer farmId;
  78. }