duheng
2025-03-28 d5a2d7e66f9c8046bd88b8269e61aac5a2a265e2
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
using Yw.Model;
 
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 登录用户信息
    /// </summary>
    public class LoginUserInfo
    {
        /// <summary>
        /// 客户ID
        /// </summary>
        public static long CorpID { get; set; }
 
        /// <summary>
        /// 客户名称
        /// </summary>
        public static string CorpName { get; set; }
 
        /// <summary>
        /// 用户ID
        /// </summary>
        public static long UserID { get; set; }
 
        /// <summary>
        /// 权限类型
        /// </summary>
        public static eAdminType AdminType { get; set; }
 
        /// <summary>
        /// 用户名称
        /// </summary>
        public static string UserName { get; set; }
 
        /// <summary>
        /// 用户标志
        /// </summary>
        public static string UserTag { get; set; }
 
        /// <summary>
        /// 登录账户ID
        /// </summary>
        public static long LoginAccountID { get; set; }
 
        /// <summary>
        /// 登录账户名称
        /// </summary>
        public static string LoginAccountName { get; set; }
 
        /// <summary>
        /// 登录类型ID
        /// </summary>
        public static long LoginTypeID { get; set; }
 
        /// <summary>
        /// 登录类型名称
        /// </summary>
        public static string LoginTypeName { get; set; }
 
        /// <summary>
        /// 项目ID
        /// </summary>
        public static long ProjectID { get; set; }
 
        /// <summary>
        /// 项目名称
        /// </summary>
        public static string ProjectName { get; set; }
 
        /// <summary>
        /// 软件ID
        /// </summary>
        public static long SoftwareID { get; set; }
 
        /// <summary>
        /// 软件名称
        /// </summary>
        public static string SoftwareName { get; set; }
    }
}