YearPigBaseEntity.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.huimv.management.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. import lombok.Data;
  7. /**
  8. * 年猪基本
  9. *
  10. * @author yinhao
  11. * @email yinhao@163.com
  12. * @date 2021-05-07 15:32:42
  13. */
  14. @Data
  15. @TableName("mgt_year_pig_base")
  16. public class YearPigBaseEntity implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. *
  20. */
  21. @TableId
  22. private Integer id;
  23. /**
  24. * 耳标号
  25. */
  26. private String eartag;
  27. /**
  28. * 日龄
  29. */
  30. private Integer dayAge;
  31. /**
  32. * 单元
  33. */
  34. private Integer unitId;
  35. /**
  36. * 体重
  37. */
  38. private Double weight;
  39. /**
  40. * 是否认养
  41. */
  42. private Boolean fosterStatus;
  43. /**
  44. * 是否健康
  45. */
  46. private Boolean healthStatus;
  47. /**
  48. * 去向信息
  49. */
  50. private String whereDidYouGo;
  51. /**
  52. * 删除状态 0正常 1已删除
  53. */
  54. private Boolean deleted;
  55. /**
  56. * 创建时间
  57. */
  58. private Date gmtCreate;
  59. /**
  60. * 修改时间
  61. */
  62. private Date gmtModified;
  63. }