ningshuxia
2022-12-12 e81ca048ef4e9345e904b74ffffd3e8413d18a7e
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
 
namespace IStation.Entity
{
    /// <summary>
    /// 用户登录授权
    /// </summary>
    [SugarTable("user_login_auth")]
    public class UserLoginAuth :BaseEntity, System.ICloneable,IUseStatus
    {
        /// <summary>
        /// 
        /// </summary>
        public UserLoginAuth() { }
 
        /// <summary>
        /// 
        /// </summary>
        public UserLoginAuth(UserLoginAuth rhs):base(rhs)
        {
            this.UserID = rhs.UserID;
            this.IdentityType = rhs.IdentityType;
            this.Identifier = rhs.Identifier;
            this.Credential = rhs.Credential;
            this.IfVerified = rhs.IfVerified;
            this.UseStatus = rhs.UseStatus;
        }
 
        /// <summary>
        /// 用户标识
        /// </summary>    
        public long UserID
        {
            get { return _userid; }
            set { _userid = value; }
        }
        private long _userid;
 
        /// <summary>
        /// 登录类型
        /// </summary>    
        public int IdentityType
        {
            get { return _identitytype; }
            set { _identitytype = value; }
        }
        private int _identitytype;
 
        /// <summary>
        /// 身份标识
        /// </summary>    
        public string Identifier
        {
            get { return _identifier; }
            set { _identifier = value; }
        }
        private string _identifier;
 
        /// <summary>
        /// 授权凭证
        /// </summary>    
        public string Credential
        {
            get { return _credential; }
            set { _credential = value; }
        }
        private string _credential;
 
        /// <summary>
        /// 是否验证
        /// </summary>    
        public bool IfVerified
        {
            get { return _ifverified; }
            set { _ifverified = value; }
        }
        private bool _ifverified;
 
        /// <summary>
        /// 使用状态
        /// </summary>    
        public int UseStatus
        {
            get { return _usestatus; }
            set { _usestatus = value; }
        }
        private int _usestatus;
 
        /// <summary>
        /// 
        /// </summary>
        public UserLoginAuth Clone()
        {
            return (UserLoginAuth)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}