MenuOperation.cs
543 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model
{
public class MenuOperation : BaseModel
{
public string MenuName { get; set; }
public int ParentId { get; set; }
public int OrderNum { get; set; }
public string Url { get; set; }
public string MenuType { get; set; }
public bool Visible { get; set; }
public string Perms { get; set; }
public string Remark { get; set; }
}
}