namespace GxPress.Entity.WorkProcessDto { /// /// 发起限制 /// public class RequestLimit { /// /// 用户id /// public int UserId { get; set; } /// /// 用户名 /// public string UserName { get; set; } /// /// 角色id /// public int RoleId { get; set; } /// /// 角色名 /// public string RoleName { get; set; } /// /// 部门id /// public int DepartmentId { get; set; } /// /// 部门名 /// public string DepartmentName { get; set; } } }