using Yw.Entity;
namespace PBS.Entity.WE
{
///
/// 用水当量目录映射
///
[SysType("we-catalogue-mapping")]
[SugarTable("we_catalogue_mapping")]
public class CatalogueMapping : BaseEntity, 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 long CatalogueID { get; set; }
///
/// 项标识
///
public long ItemID { get; set; }
///
/// 版本
///
[SugarColumn(Length = 255, IsNullable = true)]
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();
}
}
}