This commit is contained in:
yubaolee
2017-01-12 19:16:37 +08:00
parent ccf1269eca
commit 21b37f77cf
270 changed files with 1935 additions and 5907 deletions

View File

@@ -0,0 +1,50 @@
//------------------------------------------------------------------------------
// <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>
//------------------------------------------------------------------------------
using System;
namespace OpenAuth.Domain
{
/// <summary>
/// 数据字典
/// </summary>
public partial class DicIndex :Entity
{
public DicIndex()
{
this.Name= string.Empty;
this.Key= string.Empty;
this.SortNo= 0;
this.Description= string.Empty;
}
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
///
/// </summary>
public string Key { get; set; }
/// <summary>
/// 排序号
/// </summary>
public int SortNo { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 所属分类
/// </summary>
public System.Guid? CategoryId { get; set; }
}
}