From cf08f9cb84e07601519e56c5554ca4cca6aa4372 Mon Sep 17 00:00:00 2001
From: rentaiming <806181062@qq.com>
Date: 星期三, 24 七月 2024 08:59:11 +0800
Subject: [PATCH] 森林防火 供应商管理

---
 ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysUser.java |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysUser.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysUser.java
index 4e3b4ca..e31b4b4 100644
--- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysUser.java
+++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysUser.java
@@ -46,6 +46,12 @@
     @TableField("user_name")
     private String userName;
 
+    /** 用户账号 */
+    @Excel(name = "供应商联系人")
+    @TableField("contacts")
+    private String contacts;
+
+
     /** 用户昵称 */
     @Excel(name = "用户名称")
     @NotBlank(message = "姓名不能为空")
@@ -139,13 +145,15 @@
     @ApiModelProperty(value = "角色名称")
     @TableField(exist = false)
     private String roleName;
+
+    @ApiModelProperty(value = "部门名称")
+    @TableField(exist = false)
+    private String deptName;
     
     @ApiModelProperty(value = "是否为拍卖师 1=否 2=是")
     @TableField(exist = false)
     private Integer isAuctioneer;
 
-    @ApiModelProperty(value = "供应商联系人")
-    private String contacts;
 
     /** 所属省名称 */
     @TableField("province_name")

--
Gitblit v1.7.1