lixiaojun
2022-08-17 d3024a7b50b35a8f24c1bfe0f13f4f86cc63a253
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
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
 
namespace IStation.Entity
{
    /// <summary>
    /// 字典值表
    /// </summary>
    [SugarTable("sys_dict_data")]
    public class SysDictData : BaseEntity, ISorter, IUseStatus, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public SysDictData() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SysDictData(SysDictData rhs) : base(rhs)
        {
            this.TypeID = rhs.TypeID;
            this.Value = rhs.Value;
            this.Code = rhs.Code;
            this.SortCode = rhs.SortCode;
            this.UseStatus = rhs.UseStatus;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 字典类型Id
        /// </summary>
        public long TypeID { get; set; }
 
        /// <summary>
        /// 值
        /// </summary>
        public string Value { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 排序
        /// </summary>
        public int SortCode { get; set; }
 
        /// <summary>
        /// 使用状态
        /// </summary>
        public int UseStatus { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public SysDictData Clone()
        {
            return (SysDictData)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
 
 
    }
}