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
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
 
namespace IStation.Entity
{
    /// <summary>
    /// 参数配置
    /// </summary>
    [SugarTable("paras_configure")]
    public class ParasConfigure : CorpEntity, System.ICloneable 
    {
        /// <summary>
        /// 
        /// </summary>
        public ParasConfigure() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ParasConfigure(ParasConfigure rhs) : base(rhs)
        {
            this.Type = rhs.Type;
            this.Value = rhs.Value;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 类型
        /// </summary>    
        public string Type
        {
            get { return _type; }
            set { _type = value; }
        }
        private string _type;
 
        /// <summary>
        /// 值
        /// </summary>    
        public string Value
        {
            get { return _value; }
            set { _value = value; }
        }
        private string _value;
 
        /// <summary>
        /// 说明
        /// </summary>    
        public string Description
        {
            get { return _description; }
            set { _description = value; }
        }
        private string _description;
 
        /// <summary>
        /// 
        /// </summary>
        public ParasConfigure Clone()
        {
            return (ParasConfigure)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}