From feea6a61a270993e5ec7899192d8719e631f70f4 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期六, 13 九月 2025 14:58:02 +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