//------------------------------------------------------------------------------
//
// 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;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
///
/// 模块元素表(需要权限控制的按钮)
///
public partial class ModuleElement
{
public ModuleElement()
{
this.Id= 0;
this.DomId= string.Empty;
this.Name= string.Empty;
this.Type= string.Empty;
this.ModuleId= 0;
this.Attr= string.Empty;
this.Script= string.Empty;
this.Icon= string.Empty;
this.Class= string.Empty;
this.Remark= string.Empty;
this.Sort= 0;
}
///
/// 流水号
///
public int Id { get; set; }
///
/// DOM ID
///
public string DomId { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// 功能模块Id
///
public int ModuleId { get; set; }
///
/// 元素附加属性
///
public string Attr { get; set; }
///
/// 元素调用脚本
///
public string Script { get; set; }
///
/// 元素图标
///
public string Icon { get; set; }
///
/// 元素样式
///
public string Class { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 排序字段
///
public int Sort { get; set; }
}
}