BasePigpen.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.huimv.guowei.admin.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. import java.io.Serializable;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author author
  15. * @since 2023-02-13
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. @TableName("base_pigpen")
  21. public class BasePigpen implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 栋舍名字
  27. */
  28. private String buildName;
  29. /**
  30. * 父级
  31. */
  32. private Integer parentId;
  33. /**
  34. * 1栋 2单元 3房间
  35. */
  36. private Integer fType;
  37. private Integer stageCode;
  38. private Integer farmId;
  39. private Integer sort;
  40. private String other1;
  41. private String other2;
  42. private String other3;
  43. }