From 6eb4d5574aee7042b1883e043d5798865e84d1d1 Mon Sep 17 00:00:00 2001 From: ningshuxia <ningshuxia0927@outlook.com> Date: 星期一, 29 四月 2024 14:44:23 +0800 Subject: [PATCH] 1.分析组合 2.分析组合结论 --- Schedule/IStation.Algorithm/V1/Entity/Base/BaseEntity.cs | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Schedule/IStation.Algorithm/Entity/BaseEntity.cs b/Schedule/IStation.Algorithm/V1/Entity/Base/BaseEntity.cs similarity index 87% copy from Schedule/IStation.Algorithm/Entity/BaseEntity.cs copy to Schedule/IStation.Algorithm/V1/Entity/Base/BaseEntity.cs index c8daeee..53453e7 100644 --- a/Schedule/IStation.Algorithm/Entity/BaseEntity.cs +++ b/Schedule/IStation.Algorithm/V1/Entity/Base/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; } + } + } -- Gitblit v1.9.3