| | |
| | | using SqlSugar; |
| | | using Yw.Entity; |
| | | using Yw.Entity; |
| | | |
| | | namespace HStation.Entity |
| | | { |
| | |
| | | /// </summary> |
| | | [SysType("xhs_pumpartmain")] |
| | | [SugarTable("xhs_pumpartmain")] |
| | | public class PumpPartMain : BaseEntity, System.ICloneable |
| | | public class PumpPartMain : BaseEntity, ISorter, System.ICloneable |
| | | { |
| | | public PumpPartMain() |
| | | { } |
| | |
| | | public string Code { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | | /// </summary> |
| | | public int SortCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public PumpMain Clone() |
| | | public PumpPartMain Clone() |
| | | { |
| | | return (PumpMain)this.MemberwiseClone(); |
| | | return (PumpPartMain)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |