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.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
|
|
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>();
|
|
|
|
}
|
|
|
|
}
|