using HStation.Service.Organize; using System.Runtime.Serialization; using Yw.Entity; namespace HStation.Entity { [SysType("xhs_loginusermain")] [SysPropValueTable("xhs_loginusermain")] [SugarTable("xhs_loginusermain")] public class LoginUserMain : BaseEntity, 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 string LoginName { get; set; } /// /// 密码 /// public string PassWord { get; set; } /// /// 创建时间 /// public string CreateTime { get; set; } public EmployeeMain Clone() { return (EmployeeMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }