lixiaojun
2024-09-23 81819f13e1e3a49bf8456051ec0f0b51e3f10821
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 UserLoginAccount
    {
        public UserLoginAccount()
        {
        }
 
        public UserLoginAccount(Model.UserLoginAccount 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; }
    }
}