26 lines
526 B
C#
26 lines
526 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel.BD
|
|||
|
|
{
|
|||
|
|
public class MeterTree
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 节点编码
|
|||
|
|
/// </summary>
|
|||
|
|
public string code { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 节点ID
|
|||
|
|
/// </summary>
|
|||
|
|
public string id { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 节点名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string name { get; set; }
|
|||
|
|
|
|||
|
|
public bool isLeaf { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|