批量推送

This commit is contained in:
郭庆泰
2026-08-16 13:42:26 +08:00
parent c612d4297a
commit 0c093076a4
66 changed files with 4847 additions and 1627 deletions
@@ -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;
}
}