批量推送
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.ruoyi.system.domain.vo;
|
||||
|
||||
import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
|
||||
/**
|
||||
* 用户扩展视图对象
|
||||
* <p>
|
||||
* 继承自 SysUser, 仅在 list 场景下附加业务字段 (sys_user.role_type),
|
||||
* 不影响 SysUser 实体本身, 不参与新增/修改/详情接口。
|
||||
* </p>
|
||||
*/
|
||||
public class SysUserExtendVo extends SysUser
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 业务角色 (admin / leader / manager / doctor / executor / sponsor) */
|
||||
private String roleType;
|
||||
|
||||
public String getRoleType()
|
||||
{
|
||||
return roleType;
|
||||
}
|
||||
|
||||
public void setRoleType(String roleType)
|
||||
{
|
||||
this.roleType = roleType;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user