package com.govmade.modules.system.entity; import com.baomidou.mybatisplus.annotations.TableName; import com.govmade.modules.basic.entity.BaseEntity; /** * 系统管理 - 部门设置 * * @author 刘弈臻 * @date 2018年8月8日 */ @TableName("system_departs") public class DepartEntity extends BaseEntity<Long>{ private static final long serialVersionUID = 1L; private String code; //机构编码 private String name; //部门名称 private Long areaId; //所属行政区划 private Integer type; //机构类别 private Integer level; //层级 private Long weight; //权重 public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getAreaId() { return areaId; } public void setAreaId(Long areaId) { this.areaId = areaId; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public Integer getLevel() { return level; } public void setLevel(Integer level) { this.level = level; } public Long getWeight() { return weight; } public void setWeight(Long weight) { this.weight = weight; } }