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.
34 lines
705 B
34 lines
705 B
1 year ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace BaseService.Systems.MenuManagement.Dto
|
||
|
{
|
||
|
public class CreateOrUpdateMenuDto
|
||
|
{
|
||
|
public Guid? FormId { get; set; }
|
||
|
|
||
|
public Guid? Pid { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 菜单类型
|
||
|
/// </summary>
|
||
|
public int CategoryId { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
public string Label { get; set; }
|
||
|
|
||
|
public int Sort { get; set; }
|
||
|
|
||
|
public string Path { get; set; }
|
||
|
|
||
|
public string Component { get; set; }
|
||
|
|
||
|
public string Permission { get; set; }
|
||
|
|
||
|
public string Icon { get; set; }
|
||
|
}
|
||
|
}
|