using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// LogicTree Dto /// public class LogicTreeDto { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 类别标识 /// public long CatalogID { get; set; } /// /// 父节点标识 /// public List ParentIds { get; set; } /// /// 业务类型 /// public string LogicType { get; set; } /// /// 业务标识 /// public long LogicID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } }