using HStation.Service.Organize;
namespace HStation.Dto
{
public class LoginUserMainDto
{
public LoginUserMainDto()
{
}
public LoginUserMainDto(Model.LoginUserMain rhs)
{
this.ID = rhs.ID;
this.LoginName = rhs.LoginName;
this.PassWord = rhs.PassWord;
this.CreateTime = rhs.CreateTime;
}
///
/// id
///
public long ID { get; set; }
///
/// 登录名
///
public string LoginName { get; set; }
///
/// 密码
///
public string PassWord { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}