using JSMachine.WMS.App.Dto;
namespace JSMachine.WMS.App.Dto
{
public class UserInfoDto : IRootDto
{
public Guid Id { get; set; }
///
/// 账号
///
public string UserId { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 密码
///
public string Password { get; set; }
///
/// 创建时间
///
public DateTime? CreationTime { get; set; }
///
/// 修改时间
///
public DateTime? LastModifiedTime { get; set; }
}
}