19 lines
437 B
C#
19 lines
437 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|