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; } /// /// 登录类型 /// public int ObjectType { get; set; } /// /// 登录ID /// public long LoginID { get; set; } /// /// 员工ID /// public long ObjectID { get; set; } public EmployeeMain Clone() { return (EmployeeMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }