using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IWareDataAccess.Entity.Base
|
{
|
public class UserRolePermissionViewEntity
|
{
|
|
public int menu_Id{get;set;}
|
public string menuName{get;set;}
|
public int parentId{get;set;}
|
public string hasChild { get; set; }
|
public string state { get; set; }
|
public List<AuthEntity> auth { get; set; }
|
public List<UserRolePermissionViewEntity> children { get; set; }
|
|
}
|
public class AuthEntity
|
{
|
public int menu_Id { get; set; }
|
public string label { get; set; }
|
public string nodeName { get; set; }
|
public int value { get; set; }
|
|
}
|
}
|