lg_backend/langguanApi/Model/Dto/SystemConfigurationDto/MeauDto.cs

31 lines
869 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace langguanApi.Model.Dto.SystemConfigurationDto
{
public class MeauDto
{
/// <summary>
/// 父菜单ID 默认首页为1级有组织为2级无组织为2级下面的子菜单为3级
/// </summary>
public string ParentId { get; set; }
/// <summary>
/// 菜单编码
/// </summary>
public string MenuCode { get; set; }
/// <summary>
/// 菜单名称
/// </summary>
public string MenuName { get; set; }
/// <summary>
/// 可空,菜单跳转路径
/// </summary>
public string Url { get; set; }
/// <summary>
/// 排序
/// </summary>
public int Sort { get; set; }
/// <summary>
/// 是否激活
/// </summary>
public bool IsActive { get; set; }
}
}