19 lines
424 B
C#
19 lines
424 B
C#
|
namespace ZhiYi.Core.Repository.Entities
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 分组关系表
|
|||
|
/// </summary>
|
|||
|
public class ZhiYi_Group_Relation : SugarEntity<long>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 原始分组ID
|
|||
|
/// </summary>
|
|||
|
public long Original_GroupId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 当前所有者账号ID
|
|||
|
/// </summary>
|
|||
|
public long Owner { get; set; }
|
|||
|
}
|
|||
|
}
|