using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using WMS.Attirubte;
namespace WMS.Model.Base
{
///
/// 菜单的函数
///
///
[Serializable]
[TableClmAttribute(TableName = "t_Base_Functioninfo")]
public class MenuFuctionModel
{
///
/// 功能编号
///
private string _FUN_ID=string.Empty;
///
/// 功能名称
///
private string _FUN_NAME = string.Empty;
private string _MENU_ID = string.Empty;
private string _MENU_NAME = string.Empty;
private string _FUN_IMAGE = string.Empty;
private string _FUN_TAG = string.Empty;
private Boolean _ischeck;
///
/// 选择
///
[DisplayName("选择")]
[TableClm(NoSelect = false)]
public Boolean IsCheckRec
{
get { return _ischeck; }
set { _ischeck = value; }
}
///
/// 菜单的id
///
///
[DisplayName("菜单ID")]
public string MENU_ID
{
set { _MENU_ID = value; }
get { return _MENU_ID; }
}
///
/// 菜单的名称
///
///
[DisplayName("菜单名称")]
[TableClm(NoSelect = false)]
public string MENU_NAME
{
set { _MENU_NAME = value; }
get { return _MENU_NAME; }
}
///
/// 功能的TAG
///
///
[DisplayName("功能标记")]
public string FUN_TAG
{
set { _MENU_NAME = value; }
get { return _MENU_NAME; }
}
///
/// 功能编号
///
[DisplayName("功能编号")]
public string FUN_ID
{
set { _FUN_ID = value; }
get { return _FUN_ID; }
}
///
/// 功能名称(控件的名称)
///
[DisplayName("功能名称")]
public string FUN_NAME
{
set { _FUN_NAME = value; }
get { return _FUN_NAME; }
}
///
/// 图片地址
///
[DisplayName("图片地址")]
public string FUN_IMAGE
{
set { _FUN_IMAGE = value; }
get { return _FUN_IMAGE; }
}
private string _FUN_DICTORY = string.Empty;
///
/// 功能描述
///
[DisplayName("功能描述")]
public string FUN_DICTORY
{
set { _FUN_DICTORY = value; }
get { return _FUN_DICTORY; }
}
private decimal _FUN_SORT = 0;
///
/// 排序
///
[DisplayName("排序")]
public decimal FUN_SORT
{
set { _FUN_SORT = value; }
get { return _FUN_SORT; }
}
}
}