1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using System.ComponentModel.DataAnnotations;
|
| namespace iWare.Wms.Application
| {
| /// <summary>
| /// 登录输入参数
| /// </summary>
| public class LoginInput
| {
| /// <summary>
| /// 用户名
| /// </summary>
| /// <example>superAdmin</example>
| [Required(ErrorMessage = "用户名不能为空"), MinLength(5, ErrorMessage = "用户名不能少于5位字符")]
| public string Account { get; set; }
|
| /// <summary>
| /// 密码
| /// </summary>
| /// <example>123456</example>
| [Required(ErrorMessage = "密码不能为空"), MinLength(5, ErrorMessage = "密码不能少于5位字符")]
| public string Password { get; set; }
| }
| }
|
|