using SqlSugar; namespace IStation.Entity { /// /// Epanet文件 /// [SugarTable("epanet_file")] public class EpanetFile:CorpTraceEntity, System.ICloneable { /// /// /// public EpanetFile() { } /// /// /// 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; } /// /// 所属类型 /// 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 EpanetFile Clone() { return (EpanetFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }