namespace ERP.Core.Dto { public class LoginBody { /// /// 账号 /// //[NotEmpty] public string UserName { get; set; } = string.Empty; /// /// 密码 /// //[NotEmpty] public string Password { get; set; } = string.Empty; ///// ///// 设备标识 ///// //public string DeviceKey { get; set; } = string.Empty; } }