BasePigpen.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.huimv.env.input.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.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import lombok.experimental.Accessors;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author author
  15. * @since 2024-05-09
  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单元 4 门号
  35. */
  36. private Integer fType;
  37. /**
  38. * 阶段
  39. */
  40. private Integer stageCode;
  41. private Integer farmId;
  42. private Integer sort;
  43. /**
  44. * 楼层名称
  45. */
  46. private String other1;
  47. /**
  48. * 父id集合
  49. */
  50. private String other2;
  51. /**
  52. * 0为普通栋舍 1为水电表栋舍
  53. */
  54. private String other3;
  55. /**
  56. * 单元号
  57. */
  58. private Integer other4;
  59. private String lng;
  60. private String lat;
  61. }