From 6d4a80b03e6d0eb590b7c3330452fabceffad470 Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期五, 05 九月 2025 16:20:35 +0800 Subject: [PATCH] 供应商erp --- 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