59 lines
1.3 KiB
C#
59 lines
1.3 KiB
C#
using System;
|
|
using WMS.Attirubte;
|
|
using System.ComponentModel;
|
|
namespace WMS.Model.SystemManage
|
|
{
|
|
/// <summary>
|
|
/// 角色物料权限
|
|
/// </summary>
|
|
[Serializable]
|
|
[TableClmAttribute(TableName = "T_BASE_GOODS_ROLE")]
|
|
public partial class GoodsRoleModel
|
|
{
|
|
#region Model
|
|
private string _role_id;
|
|
private string _goods_type_id;
|
|
private string _goods_type_name;
|
|
|
|
private Boolean _ischeck;
|
|
/// <summary>
|
|
/// 选择
|
|
/// </summary>
|
|
[DisplayName("选择")]
|
|
public Boolean IsCheckRec
|
|
{
|
|
get { return _ischeck; }
|
|
set { _ischeck = value; }
|
|
}
|
|
/// <summary>
|
|
/// Role Name
|
|
/// </summary>
|
|
[DisplayName("Role Name")]
|
|
public string ROLE_ID
|
|
{
|
|
set{ _role_id=value;}
|
|
get{return _role_id;}
|
|
}
|
|
/// <summary>
|
|
/// 物料类型编号
|
|
/// </summary>
|
|
[DisplayName("物料类型编号")]
|
|
public string GOODS_TYPE_ID
|
|
{
|
|
set{ _goods_type_id=value;}
|
|
get{return _goods_type_id;}
|
|
}
|
|
/// <summary>
|
|
/// 物料类型编号
|
|
/// </summary>
|
|
[DisplayName("物料类型编号")]
|
|
public string GOODS_TYPE_NAME
|
|
{
|
|
set { _goods_type_name = value; }
|
|
get { return _goods_type_name; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
}
|
|
|