ZhiYi/ZhiYi.Core.Repository/Entities/Zhiyi_Server_Relation.cs

19 lines
437 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Repository.Entities
{
/// <summary>
/// 服务器关系表
/// </summary>
public class Zhiyi_Server_Relation : SugarEntity<long>
{
/// <summary>
/// 原始服务器ID
/// </summary>
public long Original_ServerId { get; set; }
/// <summary>
/// 当前服务器ID
/// </summary>
public long Current_ServerId { get; set; }
}
}