using System; using System.Collections.Generic; using System.Text; namespace APT.BaseData.Domain.ApiModel.BD { public class MeterTree { /// /// 节点编码 /// public string code { get; set; } /// /// 节点ID /// public string id { get; set; } /// /// 节点名称 /// public string name { get; set; } public bool isLeaf { get; set; } } }