From 0e1238faa0537377afc9f6edfae7e99d8f438fb3 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期六, 30 八月 2025 15:50:52 +0800 Subject: [PATCH] 权限管理,广告资讯 --- ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java index b889f27..ea34161 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java @@ -72,21 +72,23 @@ */ private Integer removeDays; /** - * 岗位类型 1=经理 2=负责人 3=专员 + * 岗位类型 1=平台 2=分公司 3=业务员 4=供应商 5=诊所端 6=仓库员 */ - private Integer postType; + @TableField(value = "role_type") + private Integer roleType; + /** * 角色人数 */ @TableField(exist = false) private Integer userCount; - public Integer getPostType() { - return postType; + public Integer getRoleType() { + return roleType; } - public void setPostType(Integer postType) { - this.postType = postType; + public void setRoleType(Integer roleType) { + this.roleType = roleType; } public SysRole() -- Gitblit v1.7.1