You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
742 B
31 lines
742 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Collections.ObjectModel;
|
||
|
using Volo.Abp.Identity;
|
||
|
|
||
|
namespace BaseService.BaseData.UserBranchRoleManagement.Dto
|
||
|
{
|
||
|
public class CreateOrUpdateUserBranchDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
public Guid Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户ID
|
||
|
/// </summary>
|
||
|
public Guid UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分支ID
|
||
|
/// </summary>
|
||
|
public Guid BranchId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色列表
|
||
|
/// </summary>
|
||
|
public virtual ICollection<UserBranchRole> Roles { get; set; } = new Collection<UserBranchRole>();
|
||
|
}
|
||
|
}
|