ningshuxia
2024-04-29 6eb4d5574aee7042b1883e043d5798865e84d1d1
Schedule/IStation.Algorithm/V1/Entity/Base/BaseEntity.cs
copy from Schedule/IStation.Algorithm/Entity/BaseEntity.cs copy to Schedule/IStation.Algorithm/V1/Entity/Base/BaseEntity.cs
文件从 Schedule/IStation.Algorithm/Entity/BaseEntity.cs 复制
@@ -15,13 +15,16 @@
        /// </summary>
        public BaseEntity(BaseEntity rhs)
        {
            this.ID = rhs.ID;
            ID = rhs.ID;
        }
        /// <summary>
        /// 鑷鏍囪瘑
        /// </summary> 
        [SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
        public long ID { get; set; }
        public int ID { get; set; }
    }
}