//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; namespace OpenAuth.Domain { /// /// 分类表 /// public partial class Category :Entity { public Category() { this.CascadeId= string.Empty; this.Name= string.Empty; this.Status= 0; this.SortNo= 0; this.RootKey= string.Empty; this.RootName= string.Empty; } /// /// 节点语义ID /// public string CascadeId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 当前状态 /// public int Status { get; set; } /// /// 排序号 /// public int SortNo { get; set; } /// /// 分类所属科目 /// public string RootKey { get; set; } /// /// 分类所属科目名称 /// public string RootName { get; set; } /// /// 父节点流水号 /// public System.Guid? ParentId { get; set; } } }