using Yw.Model;
namespace HStation.Model
{
///
/// 属性值
///
[SysType("assets_compressor_part_prop_content")]
public class AssetsCompressorPropContent : BaseModel, System.ICloneable
{
public AssetsCompressorPropContent()
{ }
public AssetsCompressorPropContent(AssetsCompressorPropContent rhs)
{
this.SeriesID = rhs.SeriesID;
this.PropID = rhs.PropID;
this.ID = rhs.ID;
this.PartID = rhs.PartID;
this.PropValue = rhs.PropValue;
}
public void Reset(AssetsCompressorPropContent rhs)
{
this.SeriesID = rhs.SeriesID;
this.PropID = rhs.PropID;
this.ID = rhs.ID;
this.PartID = rhs.PartID;
this.PropValue = rhs.PropValue;
}
///
/// 系列ID
///
public long SeriesID { get; set; }
///
/// 产品ID
///
public long PartID { get; set; }
///
/// 属性ID
///
public long PropID { get; set; }
///
/// 属性值
///
public string PropValue { get; set; }
///
///
///
public AssetsPumpMain Clone()
{
return (AssetsPumpMain)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}