using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace VueWebCoreApi.Models
|
{
|
public class TreeDM
|
{
|
public string code { get; set; }
|
public string name { get; set; }
|
public string flag { get; set; }
|
public string is_delete { get; set; } //是否隐藏
|
public List<TreeDMOne> children { get; set; }
|
}
|
public class TreeDMOne
|
{
|
public string code { set; get; }
|
public string name { set; get; }
|
public string flag { get; set; }
|
public string is_delete { get; set; } //是否隐藏
|
public List<TreeDMTwo> children { get; set; }
|
}
|
public class TreeDMTwo
|
{
|
public string code { set; get; }
|
public string name { set; get; }
|
public string flag { get; set; }
|
public string is_delete { get; set; } //是否隐藏
|
}
|
}
|