EnvRegularCallEgg.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.huimv.guowei.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.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. * 固定电子秤
  13. * </p>
  14. *
  15. * @author author
  16. * @since 2023-06-01
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. @TableName("env_regular_call_egg")
  22. public class EnvRegularCallEgg implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 设备名称
  28. */
  29. private String callName;
  30. /**
  31. * 设备编码
  32. */
  33. private String callCode;
  34. /**
  35. * 鸭只编号
  36. */
  37. private String duckCode;
  38. /**
  39. * 采食重量 克
  40. */
  41. private Integer duckWeight;
  42. /**
  43. * 原始数据
  44. */
  45. private Integer duckFeedingOriginal;
  46. /**
  47. * 称重日期
  48. */
  49. private LocalDateTime callDate;
  50. private Integer farmId;
  51. }