using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace IStation.Model
{
///
/// 软件设置
///
public partial class SoftSetting : System.ICloneable
{
///
///
///
public SoftSetting() { }
///
///
///
public SoftSetting(SoftSetting rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.CorpID = rhs.CorpID;
this.SetName = rhs.SetName;
this.SetValue = rhs.SetValue;
}
///
///
///
public void Reset(SoftSetting rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.SetName = rhs.SetName;
this.SetValue = rhs.SetValue;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 设置名称
///
public string SetName { get; set; }
///
/// 设置值
///
public string SetValue { get; set; }
///
///
///
public SoftSetting Clone()
{
return (SoftSetting)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}