duheng
2024-07-23 80f7f4e4bed46064b44ea12fadf650cb7edb97ee
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using HStation.Service.Organize;
using System.Runtime.Serialization;
using Yw.Model;
 
namespace HStation.Model
{
    [SysType("xhs_loginusermain")]
    [SysPropValueTable("xhs_loginusermain")]
    [SugarTable("xhs_loginusermain")]
    public class LoginUserMain : BaseModel, System.ICloneable
    {
        public LoginUserMain()
        { }
 
        public LoginUserMain(LoginUserMain rhs) : base(rhs)
        {
            this.ID = rhs.ID;
            this.LoginName = rhs.LoginName;
            this.PassWord = rhs.PassWord;
            this.CreateTime = rhs.CreateTime;
        }
 
        public void Reset(LoginUserMain rhs)
        {
            this.ID = rhs.ID;
            this.LoginName = rhs.LoginName;
            this.PassWord = rhs.PassWord;
            this.CreateTime = rhs.CreateTime;
        }
 
        /// <summary>
        /// 登录名
        /// </summary>
        public string LoginName { get; set; }
 
        /// <summary>
        /// 密码
        /// </summary>
        public string PassWord { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime CreateTime { get; set; }
 
        public EmployeeMain Clone()
        {
            return (EmployeeMain)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
}