shop_template_api/ARW.Model/System/Dto/SysLogininfoDto.cs
2023-06-02 21:15:33 +08:00

26 lines
578 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ARW.Model.System;
namespace ARW.Model.System.Dto
{
public class SysLogininfoDto : SysBase
{
public int pageNum { get; set; }
/// <summary>
/// IP 地址
/// </summary>
public string Ipaddr { get; set; }
/// <summary>
/// 登录状态 0成功 1失败
/// </summary>
public string Status { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
}
}