ningshuxia
2024-05-27 f51ccee7e76f598c1f718190d216f96b5ea1ca46
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
namespace Yw.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class UserLoginAccountOutput
    {
        /// <summary>
        /// 
        /// </summary>
        public UserLoginAccountOutput() { }
 
        /// <summary>
        /// 
        /// </summary>
        public UserLoginAccountOutput(Model.UserLoginAccount rhs, Model.UserLoginType loginType)
        {
            this.ID = rhs.ID;
            this.Identifier = rhs.Identifier;
            this.LoginType = new UserLoginTypeOutput(loginType);
        }
 
        /// <summary>
        /// id
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 身份标识
        /// </summary>
        public string Identifier { get; set; }
 
        /// <summary>
        /// 登录类型
        /// </summary>
        public UserLoginTypeOutput LoginType { get; set; }
 
    }
}