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.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户基本信息关联表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class UserRefEntity
|
|
|
|
|
{
|
|
|
|
|
#region 私有成员
|
|
|
|
|
private string _gid;//惟一值
|
|
|
|
|
private string _userid;//用户表GID
|
|
|
|
|
private string _baseid;//用户基础信息表GID
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public UserRefEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 读写属性
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 惟一值
|
|
|
|
|
/// </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 BaseInfoID
|
|
|
|
|
{
|
|
|
|
|
get { return _baseid; }
|
|
|
|
|
set { _baseid = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|