using Yw.Model;
namespace HStation.Model
{
///
/// 业务站
///
[SysType("assets_pump_group_main_mapping")]
public class AssetsPumpGroupAndMainMapping : BaseModel, IParas, IFlags, ITagName, System.ICloneable
{
///
///
///
public AssetsPumpGroupAndMainMapping()
{ }
///
///
///
public AssetsPumpGroupAndMainMapping(AssetsPumpGroupAndMainMapping rhs) : base(rhs)
{
this.ID = rhs.ID;
this.GroupID = rhs.GroupID;
this.Paras = rhs.Paras;
this.Flags = rhs.Flags;
this.MainID = rhs.MainID;
this.TagName = rhs.TagName;
this.Description = rhs.Description;
}
public void Reset(AssetsPumpGroupAndMainMapping rhs)
{
this.ID = rhs.ID;
this.GroupID = rhs.GroupID;
this.Paras = rhs.Paras;
this.MainID = rhs.MainID;
this.Flags = rhs.Flags;
this.TagName = rhs.TagName;
this.Description = rhs.Description;
}
///
/// 组ID
///
public long GroupID { get; set; }
///
/// 型号ID
///
public long MainID { get; set; }
///
/// 参数
///
public Dictionary Paras { get; set; }
///
/// 标签
///
public List Flags { get; set; }
///
/// 标志
///
public string TagName { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public AssetsPumpGroupAndMainMapping Clone()
{
return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}