OpenAuth.Net/OpenAuth.Repository/Domain/Org.cs

94 lines
2.6 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +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>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
2017-12-08 23:31:52 +08:00
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 组织表
/// </summary>
2017-12-08 23:31:52 +08:00
public partial class Org : TreeEntity
2017-10-11 16:19:34 +08:00
{
public Org()
{
2017-12-08 23:31:52 +08:00
this.CascadeId = string.Empty;
this.Name = string.Empty;
this.HotKey = string.Empty;
this.ParentName = string.Empty;
this.IconName = string.Empty;
this.Status = 0;
this.BizCode = string.Empty;
this.CustomCode = string.Empty;
this.CreateTime = DateTime.Now;
this.CreateId = 0;
this.SortNo = 0;
this.ParentId = string.Empty;
this.TypeName = string.Empty;
this.TypeId = string.Empty;
2017-10-11 16:19:34 +08:00
}
2017-12-08 23:31:52 +08:00
2017-10-11 16:19:34 +08:00
/// <summary>
/// 热键
/// </summary>
public string HotKey { get; set; }
2017-12-08 23:31:52 +08:00
2017-10-11 16:19:34 +08:00
/// <summary>
2017-12-08 23:31:52 +08:00
/// 是否叶子节点
/// </summary>
2017-10-11 16:19:34 +08:00
public bool IsLeaf { get; set; }
/// <summary>
/// 是否自动展开
/// </summary>
public bool IsAutoExpand { get; set; }
/// <summary>
/// 节点图标文件名称
/// </summary>
public string IconName { get; set; }
/// <summary>
/// 当前状态
/// </summary>
public int Status { get; set; }
/// <summary>
/// 业务对照码
/// </summary>
public string BizCode { get; set; }
/// <summary>
/// 自定义扩展码
/// </summary>
public string CustomCode { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public System.DateTime CreateTime { get; set; }
/// <summary>
/// 创建人ID
/// </summary>
public int CreateId { get; set; }
/// <summary>
/// 排序号
/// </summary>
public int SortNo { get; set; }
2017-12-08 23:31:52 +08:00
2017-10-11 16:19:34 +08:00
/// <summary>
2017-12-08 23:31:52 +08:00
/// 分类名称
/// </summary>
2017-11-29 20:49:14 +08:00
public string TypeName { get; set; }
/// <summary>
/// 分类ID
/// </summary>
public string TypeId { get; set; }
2017-10-11 16:19:34 +08:00
}
}