using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace OpenAuth.Domain
{
///
/// 数据字典
///
public partial class DicIndex
{
///
/// ID
///
///
public int Id { get; set; }
///
/// 组织名称
///
///
public string Name { get; set; }
///
///
///
///
public string Key { get; set; }
///
/// 排序号
///
///
public int SortNo { get; set; }
///
/// 资源分类标识
///
///
public int CategoryId { get; set; }
///
/// 描述
///
///
public string Description { get; set; }
public DicIndex()
{
this.Id= 0;
this.Name= string.Empty;
this.Key= string.Empty;
this.SortNo= 0;
this.CategoryId= 0;
this.Description= string.Empty;
}
}
}