duheng
2024-07-23 14e8d0036e5f194d034c889ebbe458321ff59c10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using HStation.Service.Organize;
using System.ComponentModel.DataAnnotations;
 
namespace HStation.Dto.Assets
{
    public class UpdateLoginUserMainDto
    {
        /// <summary>
        /// id
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
        public long ID { get; set; }
 
        /// <summary>
        /// 登录名
        /// </summary>
        public string LoginName { get; set; }
 
        /// <summary>
        /// 密码
        /// </summary>
        public string PassWord { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime CreateTime { get; set; }
    }
}