using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 分类列表 /// public partial class Category { /// /// 分类ID /// /// public int Id { get; set; } /// /// 节点语义ID /// /// public string CascadeId { get; set; } /// /// 组织名称 /// /// public string Name { get; set; } /// /// 父节点流水号 /// /// public int ParentId { get; set; } /// /// 资源分类标识 /// /// public int Status { get; set; } /// /// 排序号 /// /// public int SortNo { get; set; } /// /// 资源分类标识 /// /// public string RootKey { get; set; } /// /// 资源分类 /// /// public string RootName { get; set; } public Category() { this.Id= 0; this.CascadeId= string.Empty; this.Name= string.Empty; this.ParentId= 0; this.Status= 0; this.SortNo= 0; this.RootKey= string.Empty; this.RootName= string.Empty; } } }