//------------------------------------------------------------------------------
//
// 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 DicDetail :Entity
{
public DicDetail()
{
this.Value= string.Empty;
this.Text= string.Empty;
this.SortNo= 0;
this.Status= 0;
this.Description= string.Empty;
}
///
/// 值
///
public string Value { get; set; }
///
/// 文本描述
///
public string Text { get; set; }
///
/// 排序号
///
public int SortNo { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 所属字典ID
///
public System.Guid DicId { get; set; }
}
}