using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace OpenAuth.Domain
{
///
/// 模块元素
///
public partial class ModuleElement
{
///
/// ID
///
///
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; }
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;
}
}
}