using Yw.Entity;
|
|
namespace PBS.Entity.WE
|
{
|
/// <summary>
|
/// 用水当量目录映射
|
///</summary>
|
[SysType("we-catalogue-mapping")]
|
[SugarTable("we_catalogue_mapping")]
|
public class CatalogueMapping : BaseEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public CatalogueMapping() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
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;
|
}
|
|
/// <summary>
|
/// 目录标识
|
///</summary>
|
public long CatalogueID { get; set; }
|
|
/// <summary>
|
/// 项标识
|
///</summary>
|
public long ItemID { get; set; }
|
|
/// <summary>
|
/// 版本
|
///</summary>
|
[SugarColumn(Length = 255, IsNullable = true)]
|
public string Version { get; set; }
|
|
/// <summary>
|
/// 状态
|
///</summary>
|
public int Status { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
///</summary>
|
public DateTime CreateTime { get; set; }
|
|
|
/// <summary>
|
///
|
/// </summary>
|
public CatalogueMapping Clone()
|
{
|
return (CatalogueMapping)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|