优化代码注释&命名空间

This commit is contained in:
不做码农
2023-05-04 18:20:18 +08:00
parent 547945d85b
commit a89762e070
47 changed files with 224 additions and 353 deletions

View File

@@ -16,14 +16,14 @@ namespace ZR.Model.System.Dto
[Required(ErrorMessage = "密码不能为空")]
public string Password { get; set; }
/**
* 验证码
*/
/// <summary>
/// 验证码
/// </summary>
public string Code { get; set; }
/**
* 唯一标识
*/
/// <summary>
/// 唯一标识
/// </summary>
public string Uuid { get; set; } = "";
public string LoginIP { get; set; }
}