You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSCustomerWeb/Models/UserAttributeRefEntity.cs

60 lines
1.4 KiB
C#

2 years ago
using System;
using System.Data;
namespace DSWeb.Models
{
/// <summary>
/// 用户属性关联表
/// </summary>
public class UserAttributeRefEntity
{
#region 私有成员
private string _gid;//用户属性关联表gid
private string _userid;//关联用户gid
private string _attrid;//关联用户账户属性gid
private string _attrvalue;//用户账户属性值
#endregion
public UserAttributeRefEntity()
{
}
#region 读写属性
/// <summary>
/// 用户属性关联表gid
/// </summary>
public string Gid
{
get { return _gid; }
set { _gid = value; }
}
/// <summary>
/// 关联用户gid
/// </summary>
public string UserID
{
get { return _userid; }
set { _userid = value; }
}
/// <summary>
/// 关联用户账户属性gid
/// </summary>
public string AttributeID
{
get { return _attrid; }
set { _attrid = value; }
}
/// <summary>
/// 用户账户属性值
/// </summary>
public string AttributeValue
{
get { return _attrvalue; }
set { _attrvalue = value; }
}
#endregion
}
}