22 lines
668 B
C#
22 lines
668 B
C#
![]() |
/*******************************************************************************
|
|||
|
* Copyright © 2016 HT.Cloud.Framework 版权所有
|
|||
|
* Author: HT.Cloud
|
|||
|
* Description: WaterCloud快速开发平台
|
|||
|
* Website:
|
|||
|
*********************************************************************************/
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HT.Cloud.Code
|
|||
|
{
|
|||
|
public class TreeGridModel
|
|||
|
{
|
|||
|
public string id { get; set; }
|
|||
|
public string parentId { get; set; }
|
|||
|
public string title { get; set; }
|
|||
|
public object self { get; set; }
|
|||
|
public object checkArr { get; set; }
|
|||
|
public bool? disabled { get; set; }
|
|||
|
public List<TreeGridModel> children { get; set; }
|
|||
|
}
|
|||
|
}
|