duheng
2024-07-23 64fc752794b8bdb846f7af17c7722955363a2a8b
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
30
31
32
33
34
35
36
37
38
39
using HStation.Service.Organize;
 
namespace HStation.Dto
{
    public class LoginUserMainDto
    {
        public LoginUserMainDto()
        {
        }
 
        public LoginUserMainDto(Model.LoginUserMain rhs)
        {
            this.ID = rhs.ID;
            this.LoginName = rhs.LoginName;
            this.PassWord = rhs.PassWord;
            this.CreateTime = rhs.CreateTime;
        }
 
        /// <summary>
        /// id
        /// </summary>
        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; }
    }
}