//------------------------------------------------------------------------------ // // 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; using System.Collections.Generic; using System.Text; namespace OpenAuth.Repository.Domain { /// /// 分类表,表示一个全集,比如:男、女、未知。关联的分类类型表示按什么进行的分类,如:按照性别对人类对象集进行分类 /// public partial class Category : Entity { public Category() { this.Name= string.Empty; this.SortNo= 0; this.Icon= string.Empty; this.Description= string.Empty; this.TypeId= string.Empty; } /// /// 名称 /// public string Name { get; set; } /// /// 是否可用 /// public bool Disabled { get; set; } /// /// 排序号 /// public int SortNo { get; set; } /// /// 分类图标 /// public string Icon { get; set; } /// /// 分类描述 /// public string Description { get; set; } /// /// 分类类型ID /// public string TypeId { get; set; } } }