EnvRegularCallFeeding.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_feeding")
  22. public class EnvRegularCallFeeding 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 Integer eggNum;
  50. /**
  51. * 称重日期
  52. */
  53. private LocalDateTime callDate;
  54. private Integer farmId;
  55. }