You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace djyweb_djyPaasApi
{
/// <summary>
/// 权限Dto
/// </summary>
public class UserAuthorityDto
{
/// <summary>
/// 用户Id
/// </summary>
public Guid? UserId { get; set; }
/// <summary>
/// 公司企业Id
/// </summary>
public Guid? CompayId { get; set; }
/// <summary>
/// 是否有权限
/// </summary>
public bool IsPower { get; set; }
}
}