DuckEggTextureInfo.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 com.fasterxml.jackson.annotation.JsonFormat;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. import lombok.experimental.Accessors;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author author
  17. * @since 2023-06-14
  18. */
  19. @Data
  20. @EqualsAndHashCode(callSuper = false)
  21. @Accessors(chain = true)
  22. @TableName("duck_egg_texture_info")
  23. public class DuckEggTextureInfo implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. private String duckNum;
  28. private Integer duckId;
  29. /**
  30. * 位置(预留字段)
  31. */
  32. private String location;
  33. /**
  34. * 单元名字(位置)
  35. */
  36. private String unitName;
  37. private Integer unitId;
  38. /**
  39. * 产蛋日期
  40. */
  41. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  42. private LocalDateTime layEggsTime;
  43. /**
  44. * 测定日期
  45. */
  46. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  47. private LocalDateTime determineTime;
  48. /**
  49. * 鸭蛋种类 1受精蛋 2肉浮蛋
  50. */
  51. private String eggType;
  52. /**
  53. * 蛋壳颜色
  54. */
  55. private String eggColour;
  56. /**
  57. * 钝端厚度(mm)
  58. */
  59. private String bluntThick;
  60. /**
  61. * 锐端厚度(mm)
  62. */
  63. private String sharpThick;
  64. /**
  65. * 侧面厚度(mm)
  66. */
  67. private String sideThick;
  68. /**
  69. * 长径(mm)
  70. */
  71. private String longDiameter;
  72. /**
  73. * 短径(mm)
  74. */
  75. private String shortDiameter;
  76. /**
  77. * 蛋壳强度(kg/cm2)
  78. */
  79. private String eggStrength;
  80. /**
  81. * Wgt(g)
  82. */
  83. private String Wgt;
  84. /**
  85. * Hgt(mm)
  86. */
  87. private String Hgt;
  88. /**
  89. * Col
  90. */
  91. private String Col;
  92. /**
  93. * Hu(c)
  94. */
  95. private String Hu;
  96. /**
  97. * 等级
  98. */
  99. private String grade;
  100. private String remark;
  101. private Integer farmId;
  102. }