namespace IStation.Model
{
///
/// Epanet文件
///
public partial class EpanetFile : System.ICloneable
{
///
///
///
public EpanetFile() { }
///
///
///
public EpanetFile(EpanetFile rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
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;
this.CreateTime = rhs.CreateTime;
this.CreateUserID = rhs.CreateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserID = rhs.UpdateUserID;
}
///
/// 重置
///
public void Reset(EpanetFile rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
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;
this.CreateTime = rhs.CreateTime;
this.CreateUserID = rhs.CreateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserID = rhs.UpdateUserID;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 所属类型
///
public string BelongType { get; set; }
///
/// 所属id
///
public long BelongID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 工作文件
///
public bool IsWorking { get; set; }
///
/// 设置
///
public string Settings { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 创建用户标识
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 更新用户标识
///
public long? UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
///
///
public EpanetFile Clone()
{
return (EpanetFile)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}