ZhiYi/ZhiYi.Core.Repository/Entities/ZhiYi_Group_Relation.cs

19 lines
424 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
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; }
}
}