From ef56ca73e7043f2d26eb5b6d1342a4b19e379b42 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期一, 20 十月 2025 09:15:25 +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