using HStation.Service.Organize;
namespace HStation.Dto
{
public class AddUserLoginAccount
{ ///
/// 登录名
///
public string LoginName { get; set; }
///
/// 密码
///
public string PassWord { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}