d_sms_service/APT.BaseData.Domain/ApiModel/BD/MeterTree.cs
2024-10-28 13:45:58 +08:00

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; }
}
}