using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
///
|
/// </summary>
|
[SysType("assets_pumpseries_manufacturer_mapping")]
|
[SugarTable("assets_pumpseries_manufacturer_mapping")]
|
public class AssetsPumpSeriesManufacturerMapping : BaseModel, IParas, IFlags, ITagName, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpSeriesManufacturerMapping()
|
{ }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpSeriesManufacturerMapping(AssetsPumpSeriesManufacturerMapping rhs) : base(rhs)
|
{
|
this.SeriesID = rhs.SeriesID;
|
this.ManufacturerID = rhs.ManufacturerID;
|
this.Paras = rhs.Paras;
|
this.TagName = rhs.TagName;
|
this.Flags = rhs.Flags;
|
this.Description = rhs.Description;
|
}
|
|
public void Reset(AssetsPumpSeriesManufacturerMapping rhs)
|
{
|
this.ID = rhs.ID;
|
this.SeriesID = rhs.SeriesID;
|
this.ManufacturerID = rhs.ManufacturerID;
|
this.Paras = rhs.Paras;
|
this.TagName = rhs.TagName;
|
this.Flags = rhs.Flags;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
/// 系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 厂商ID
|
/// </summary>
|
public long ManufacturerID { get; set; }
|
|
/// <summary>
|
/// 参数
|
/// </summary>
|
public Dictionary<string, string> Paras { get; set; }
|
|
/// <summary>
|
/// 标签
|
/// </summary>
|
public List<string> Flags { get; set; }
|
|
/// <summary>
|
/// 标志
|
/// </summary>
|
public string TagName { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpSeries Clone()
|
{
|
return (AssetsPumpSeries)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|