using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 数据字典详情 /// public partial class DicDetail { /// /// ID /// /// public int Id { get; set; } /// /// 名称 /// /// public string Value { get; set; } /// /// /// /// public string Text { get; set; } /// /// /// /// public int DicId { get; set; } /// /// 排序号 /// /// public int SortNo { get; set; } /// /// 资源分类标识 /// /// public int Status { get; set; } /// /// 描述 /// /// public string Description { get; set; } public DicDetail() { this.Id= 0; this.Value= string.Empty; this.Text= string.Empty; this.DicId= 0; this.SortNo= 0; this.Status= 0; this.Description= string.Empty; } } }