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