| | |
| | | /// <summary> |
| | | /// 类型 |
| | | /// </summary> |
| | | [SysType("pump_type")] |
| | | [SugarTable("pump_type")] |
| | | public class PumpType : BaseEntity, ISorter, System.ICloneable |
| | | [SysType("assets_pump_type")] |
| | | [SugarTable("assets_pump_type")] |
| | | public class AssetsPumpType : BaseEntity, ISorter, System.ICloneable |
| | | { /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public PumpType() |
| | | public AssetsPumpType() |
| | | { } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public PumpType(PumpType rhs) : base(rhs) |
| | | public AssetsPumpType(AssetsPumpType rhs) : base(rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | |
| | | /// </summary> |
| | | public string Description { get; set; } |
| | | |
| | | public PumpType Clone() |
| | | public AssetsPumpType Clone() |
| | | { |
| | | return (PumpType)this.MemberwiseClone(); |
| | | return (AssetsPumpType)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |