duheng
2024-07-18 7bf79c6515f27ba9be8d2b3fb4e3ceae5718e3e5
Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,76 @@
using SqlSugar;
using Yw.Entity;
namespace HStation.Entity
{
    /// <summary>
    /// ä¸šåŠ¡ç«™
    /// </summary>
    [SysType("xhs_pumpmap")]
    [SugarTable("xhs_pumpmap")]
    public class PumpGroupAndMainMap : BaseEntity, IParas, IFlags, ITagName, System.ICloneable
    {
        /// <summary>
        ///
        /// </summary>
        public PumpGroupAndMainMap()
        { }
        /// <summary>
        ///
        /// </summary>
        public PumpGroupAndMainMap(PumpGroupAndMainMap rhs) : base(rhs)
        {
            this.ID = rhs.ID;
            this.PumpGroupID = rhs.PumpGroupID;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.PumpMainID = rhs.PumpMainID;
            this.TagName = rhs.TagName;
            this.Description = rhs.Description;
        }
        /// <summary>
        /// æ³µç»„ID
        /// </summary>
        public long PumpGroupID { get; set; }
        /// <summary>
        /// æ³µåž‹å·ID
        /// </summary>
        public long PumpMainID { get; set; }
        /// <summary>
        /// å‚æ•°
        /// </summary>
        public string Paras { get; set; }
        /// <summary>
        /// æ ‡ç­¾
        /// </summary>
        public string Flags { get; set; }
        /// <summary>
        /// æ ‡å¿—
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        /// è¯´æ˜Ž
        /// </summary>
        public string Description { get; set; }
        /// <summary>
        ///
        /// </summary>
        public PumpGroupAndMainMap Clone()
        {
            return (PumpGroupAndMainMap)this.MemberwiseClone();
        }
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
}