using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
namespace IStation.Entity
{
///
/// 软件设置
///
[SugarTable("soft_setting")]
public class SoftSetting : CorpEntity, System.ICloneable
{
///
///
///
public SoftSetting() { }
///
///
///
public SoftSetting(SoftSetting rhs) : base(rhs)
{
this.SetName = rhs.SetName;
this.SetValue = rhs.SetValue;
}
///
/// 设置名称
///
public string SetName
{
get { return _setname; }
set { _setname = value; }
}
private string _setname;
///
/// 设置值
///
public string SetValue
{
get { return _setvalue; }
set { _setvalue = value; }
}
private string _setvalue;
///
///
///
public SoftSetting Clone()
{
return (SoftSetting)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}