添加项目文件。
This commit is contained in:
22
HT.Cloud.Code/Web/TreeGrid/TreeGridModel.cs
Normal file
22
HT.Cloud.Code/Web/TreeGrid/TreeGridModel.cs
Normal file
@ -0,0 +1,22 @@
|
||||
/*******************************************************************************
|
||||
* 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user