Organization.java 896 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.chuanghai.entity;
  2. import java.util.Date;
  3. import java.io.Serializable;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.experimental.Accessors;
  7. @Data
  8. @EqualsAndHashCode(callSuper = false)
  9. @Accessors(chain = true)
  10. public class Organization implements Serializable {
  11. private static final long serialVersionUID=1L;
  12. /**
  13. * 主键
  14. */
  15. private Long id;
  16. /**
  17. * 组织名称
  18. */
  19. private String name;
  20. /**
  21. * 父组织编号
  22. */
  23. private Integer parentId;
  24. /**
  25. * 组织类别
  26. */
  27. private String orgType;
  28. /**
  29. * 类别
  30. */
  31. private Integer type;
  32. /**
  33. * 更新时间
  34. */
  35. private Date updatedAt;
  36. /**
  37. * 省份
  38. */
  39. private String province;
  40. /**
  41. * 城市
  42. */
  43. private String city;
  44. /**
  45. * 地区
  46. */
  47. private String area;
  48. }