using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace VueWebApi.Models
|
{
|
public class TreeDM
|
{
|
public string id { get; set; }
|
public string code { get; set; }
|
public string name { get; set; }
|
public string type { get; set; }
|
public string flag { get; set; }
|
public List<TreeDM> children { get; set; }
|
public List<AA> children1 { get; set; }
|
}
|
public class AA
|
{
|
public string code { set; get; }
|
public string name { set; get; }
|
public string flag { get; set; } //是否分配角色
|
}
|
}
|