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();
|
}
|
}
|
|
}
|