qin
2025-03-20 00ab1b5282ada6ffdc78b3dd46f0ce08726a51e6
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
using System.ComponentModel.DataAnnotations;
 
namespace HStation.WinFrmUI
{
    public class UserAccountViewModel
    {
        public UserAccountViewModel()
        { }
 
        public UserAccountViewModel(Yw.Vmo.UserLoginAccountVmo rhs)
        {
            this.ID = rhs.ID;
            //this.LoginType = rhs.LoginTypeID
            this.Identifier = rhs.Identifier;
            this.IfVerified = rhs.IfVerified;
        }
 
        /// <summary>
        /// UserID
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 登录类型
        /// </summary>
        [Display(Name = "登录类型")]
        public string LoginType { get; set; }
 
        /// <summary>
        /// 登录账户
        /// </summary>
        [Display(Name = "登录账户")]
        public string Identifier { get; set; }
 
        /// <summary>
        /// 是否验证
        /// </summary>
        [Display(Name = "是否验证")]
        public bool IfVerified { get; set; }
    }
}