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.

36 lines
763 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.ComponentModel.DataAnnotations;
using Common.Enum;
using Entity.DbModel.System;
namespace Entity.Dto.Req
{
public class MenuReq
{
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; } = "";
/// <summary>
/// 菜单类型1目录 2菜单 3按钮
/// </summary>
public MenuTypeEnum? Type { get; set; }
}
public class AddMenuReq : SysMenu
{
/// <summary>
/// 名称
/// </summary>
[Required(ErrorMessage = "菜单名称不能为空")]
public override string Title { get; set; }
}
public class UpdateMenuReq : AddMenuReq
{
}
public class DeleteMenuReq : BaseIdReq
{
}
}