using HStation.Service.Organize;
|
using System.Runtime.Serialization;
|
using Yw.Model;
|
|
namespace HStation.Model
|
{
|
[SysType("xhs_loginusermain")]
|
[SysPropValueTable("xhs_loginusermain")]
|
[SugarTable("xhs_loginusermain")]
|
public class LoginUserMain : BaseModel, System.ICloneable
|
{
|
public LoginUserMain()
|
{ }
|
|
public LoginUserMain(LoginUserMain rhs) : base(rhs)
|
{
|
this.ID = rhs.ID;
|
this.LoginName = rhs.LoginName;
|
this.PassWord = rhs.PassWord;
|
this.CreateTime = rhs.CreateTime;
|
}
|
|
public void Reset(LoginUserMain rhs)
|
{
|
this.ID = rhs.ID;
|
this.LoginName = rhs.LoginName;
|
this.PassWord = rhs.PassWord;
|
this.CreateTime = rhs.CreateTime;
|
}
|
|
/// <summary>
|
/// 登录名
|
/// </summary>
|
public string LoginName { get; set; }
|
|
/// <summary>
|
/// 密码
|
/// </summary>
|
public string PassWord { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
public DateTime CreateTime { get; set; }
|
|
public EmployeeMain Clone()
|
{
|
return (EmployeeMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|