using SqlSugar;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// Epanet文件
|
/// </summary>
|
[SugarTable("epanet_file")]
|
public class EpanetFile:CorpTraceEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public EpanetFile() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public EpanetFile(EpanetFile rhs):base(rhs)
|
{
|
this.BelongType = rhs.BelongType;
|
this.BelongID = rhs.BelongID;
|
this.Name = rhs.Name;
|
this.StorageHouse = rhs.StorageHouse;
|
this.StorageCode = rhs.StorageCode;
|
this.IsWorking = rhs.IsWorking;
|
this.Settings = rhs.Settings;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
/// 所属类型
|
/// </summary>
|
public string BelongType { get; set; }
|
|
/// <summary>
|
/// 所属id
|
/// </summary>
|
public long BelongID { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 存储仓库
|
/// </summary>
|
public string StorageHouse { get; set; }
|
|
/// <summary>
|
/// 存储编码
|
/// </summary>
|
public string StorageCode { get; set; }
|
|
/// <summary>
|
/// 工作文件
|
/// </summary>
|
public bool IsWorking { get; set; }
|
|
/// <summary>
|
/// 设置
|
/// </summary>
|
public string Settings { get; set; }
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public EpanetFile Clone()
|
{
|
return (EpanetFile)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|