//------------------------------------------------------------------------------ // // 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 DicIndex :Entity { public DicIndex() { this.Name= string.Empty; this.Key= string.Empty; this.SortNo= 0; this.Description= string.Empty; } /// /// 名称 /// public string Name { get; set; } /// /// /// public string Key { get; set; } /// /// 排序号 /// public int SortNo { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 所属分类 /// public System.Guid? CategoryId { get; set; } } }