using HStation.Service.Organize;
namespace HStation.Dto
{
public class UserLoginMapDto
{
public UserLoginMapDto()
{
}
public UserLoginMapDto(Model.UserLoginMap rhs)
{
this.ID = rhs.ID;
this.LoginID = rhs.LoginID;
this.ObjectID = rhs.ObjectID;
this.ObjectType = rhs.ObjectType;
}
///
/// id
///
public long ID { get; set; }
///
/// 登录类型
///
public eObjectType ObjectType { get; set; }
///
/// 登录ID
///
public long LoginID { get; set; }
///
/// 员工ID
///
public long ObjectID { get; set; }
}
}