duheng
2024-07-30 6a459601b5afc6a60ec4828f741d3b547f88a1e0
Service/HStation.Service.Assets.Core/01-entity/PumpPartMain.cs
@@ -1,5 +1,4 @@
using SqlSugar;
using Yw.Entity;
using Yw.Entity;
namespace HStation.Entity
{
@@ -8,7 +7,7 @@
    /// </summary>
    [SysType("xhs_pumpartmain")]
    [SugarTable("xhs_pumpartmain")]
    public class PumpPartMain : BaseEntity, System.ICloneable
    public class PumpPartMain : BaseEntity, ISorter, System.ICloneable
    {
        public PumpPartMain()
        { }
@@ -34,11 +33,16 @@
        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()