DuckHealthInfo.java 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.util.Date;
  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("duck_health_info")
  22. public class DuckHealthInfo implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. private Date healthDate;
  27. /**
  28. * 体检结果
  29. */
  30. private String healthResult;
  31. /**
  32. * 治疗措施
  33. */
  34. private String treatmentMeasure;
  35. /**
  36. * 鸭只编号
  37. */
  38. private String duckNum;
  39. private Integer farmId;
  40. private Integer duckId;
  41. }