tangxu
2024-08-07 2399f124c8af347dea80c071c98a26129a643d1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.ComponentModel.DataAnnotations;
 
namespace IStation.WinFrmUI
{
    /// <summary>
    /// 简单的TreeList绑定类
    /// </summary>
    public class SimpleTreeNode
    {
        [Display(Name = "标识ID")]
        public long ID { get; set; }
 
        [Display(Name = "父节点ID")]
        public long ParentID { get; set; }
 
        [Display(Name = "标题")]
        public string Caption { get; set; }
 
        [Display(Name = "标志")]
        public object Tag { get; set; }
    }
}