using Yw.Model;
namespace PBS.Model.WE
{
///
/// 用水当量目录映射
///
[SysType("we-catalogue-mapping")]
public class CatalogueMapping : BaseModel, System.ICloneable
{
///
///
///
public CatalogueMapping() { }
///
///
///
public CatalogueMapping(CatalogueMapping rhs) : base(rhs)
{
this.CatalogueID = rhs.CatalogueID;
this.ItemID = rhs.ItemID;
this.Version = rhs.Version;
this.Status = rhs.Status;
this.CreateTime = rhs.CreateTime;
}
///
///
///
public void Reset(CatalogueMapping rhs)
{
this.ID = rhs.ID;
this.CatalogueID = rhs.CatalogueID;
this.ItemID = rhs.ItemID;
this.Version = rhs.Version;
this.Status = rhs.Status;
this.CreateTime = rhs.CreateTime;
}
///
/// 目录标识
///
public long CatalogueID { get; set; }
///
/// 项标识
///
public long ItemID { get; set; }
///
/// 版本
///
public string Version { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
///
///
public CatalogueMapping Clone()
{
return (CatalogueMapping)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}