| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ruoyi.common.core.domain.BaseModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | |
| | | /** 角色排序 */ |
| | | //@Excel(name = "角色排序") |
| | | private Integer roleSort; |
| | | @TableField(value = "role_type") |
| | | @ApiModelProperty("所属类型 1项目部 2公司/部门") |
| | | private Integer roleType; |
| | | |
| | | /** 数据范围(1:所有数据权限;2:自定义数据权限;3:本部门数据权限;4:本部门及以下数据权限;5:仅本人数据权限) */ |
| | | //@Excel(name = "数据范围", readConverterExp = "1=所有数据权限,2=自定义数据权限,3=本部门数据权限,4=本部门及以下数据权限,5=仅本人数据权限") |
| | |
| | | * 角色人数 |
| | | */ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("角色人数") |
| | | private Integer userCount; |
| | | |
| | | public Integer getPostType() { |