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
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
namespace Yw.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class SoftRegisterStdDto
    {
        /// <summary>
        /// 
        /// </summary>
        public SoftRegisterStdDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SoftRegisterStdDto(Model.SoftRegister rhs)
        {
            this.ID = rhs.ID;
            this.SoftwareID = rhs.SoftwareID;
            this.Name = rhs.Name;
            this.UUID = rhs.UUID;
            this.CDKey = rhs.CDKey;
            this.RegistTime = rhs.RegistTime;
            this.FailureTime = rhs.FailureTime;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.CreateTime = rhs.CreateTime;
            this.CreateUserID = rhs.CreateUserID;
            this.CreateUserName = rhs.CreateUserName;
        }
 
        /// <summary>
        /// id
        /// </summary>    
        public long ID { get; set; }
 
        /// <summary>
        /// 软件id
        /// </summary>    
        public long SoftwareID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>    
        public string Name { get; set; }
 
        /// <summary>
        /// 设备id
        /// </summary>
        public string UUID { get; set; }
 
        /// <summary>
        /// 激活码
        /// </summary>
        public string CDKey { get; set; }
 
        /// <summary>
        /// 注册时间
        /// </summary>
        public DateTime? RegistTime { get; set; }
 
        /// <summary>
        /// 失效时间
        /// </summary>
        public DateTime? FailureTime { get; set; }
 
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime CreateTime { get; set; }
 
        /// <summary>
        /// 创建人id
        /// </summary>
        public long CreateUserID { get; set; }
 
        /// <summary>
        /// 创建人名称
        /// </summary>
        public string CreateUserName { get; set; }
 
 
    }
}