using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// LogicTreeEx Dto
///
public class LogicTreeExDto
{
///
/// 标识
///
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; }
///
/// 业务名称
///
public string LogicName { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}