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