using Swashbuckle.AspNetCore.Annotations; using System; using System.Collections.Generic; using System.Text; namespace Application.Web { /// /// 登录请求参数 /// public class LoginParms { /// /// 登录名/手机号 /// public string name { get; set; } = string.Empty; /// /// 密码 /// public string pwd { get; set; }= string.Empty; /// /// 验证码 /// public string code { get; set; } } }