赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.Common.Tree
{
public class TreeList
{
public int id { get; set; }
public string name { get; set; }
public Guid keys { get; set; }
public Guid parentId { get; set; }
public string actionClass { get; set; }
public string lineCode { get; set; }
}
}
|