using Yw.Entity;
|
|
namespace HStation.Entity
|
{
|
[SysType("xhs_userloginmap")]
|
[SysPropValueTable("xhs_userloginmap")]
|
[SugarTable("xhs_userloginmap")]
|
public class UserLoginMap : BaseEntity, System.ICloneable
|
{
|
public UserLoginMap()
|
{ }
|
|
public UserLoginMap(UserLoginMap rhs) : base(rhs)
|
{
|
this.ID = rhs.ID;
|
this.ObjectID = rhs.ObjectID;
|
this.LoginID = rhs.LoginID;
|
this.ObjectType = rhs.ObjectType;
|
}
|
|
/// <summary>
|
/// 登录类型
|
/// </summary>
|
public int ObjectType { get; set; }
|
|
/// <summary>
|
/// 登录ID
|
/// </summary>
|
public long LoginID { get; set; }
|
|
/// <summary>
|
/// 员工ID
|
/// </summary>
|
public long ObjectID { get; set; }
|
|
public EmployeeMain Clone()
|
{
|
return (EmployeeMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|