2016-01-07 11:47:43 +08:00
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
// <autogenerated>
|
|
|
|
|
// 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
|
|
|
|
|
// </autogenerated>
|
|
|
|
|
//------------------------------------------------------------------------------
|
2016-09-02 18:05:17 +08:00
|
|
|
|
|
2016-01-07 11:47:43 +08:00
|
|
|
|
using System;
|
2015-12-14 21:39:39 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Domain
|
|
|
|
|
{
|
2016-01-07 11:47:43 +08:00
|
|
|
|
/// <summary>
|
2015-12-14 21:39:39 +08:00
|
|
|
|
/// 数据字典详情
|
|
|
|
|
/// </summary>
|
2016-09-02 18:05:17 +08:00
|
|
|
|
public partial class DicDetail :Entity
|
2016-01-07 11:47:43 +08:00
|
|
|
|
{
|
|
|
|
|
public DicDetail()
|
|
|
|
|
{
|
2016-09-02 18:05:17 +08:00
|
|
|
|
this.Value= string.Empty;
|
2016-01-07 11:47:43 +08:00
|
|
|
|
this.Text= string.Empty;
|
|
|
|
|
this.SortNo= 0;
|
|
|
|
|
this.Status= 0;
|
|
|
|
|
this.Description= string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 文本描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Text { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 排序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SortNo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Description { get; set; }
|
2016-09-02 18:05:17 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属字典ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public System.Guid DicId { get; set; }
|
2016-01-07 11:47:43 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|