27 lines
587 B
C#
27 lines
587 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yitter.IdGenerator;
|
|
|
|
namespace WGShare.Domain.DTOs.Perm
|
|
{
|
|
public class PermissionInputDTO
|
|
{
|
|
/// <summary>
|
|
/// 菜单/按钮Id
|
|
///</summary>
|
|
public string? Id { get; set; }
|
|
/// <summary>
|
|
/// 权限名称
|
|
///</summary>
|
|
public string PermName { get; set; }
|
|
/// <summary>
|
|
/// 权限值
|
|
///</summary>
|
|
public int PermValue { get; set; }
|
|
}
|
|
}
|