| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.chuanghai.entity;
- import java.util.Date;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class Organization implements Serializable {
- private static final long serialVersionUID=1L;
- /**
- * 主键
- */
- private Long id;
- /**
- * 组织名称
- */
- private String name;
- /**
- * 父组织编号
- */
- private Integer parentId;
- /**
- * 组织类别
- */
- private String orgType;
- /**
- * 类别
- */
- private Integer type;
- /**
- * 更新时间
- */
- private Date updatedAt;
- /**
- * 省份
- */
- private String province;
- /**
- * 城市
- */
- private String city;
- /**
- * 地区
- */
- private String area;
- }
|