using SqlSugar;
namespace FoodLabeling.Application.Services.DbModels;
///
/// 组织/分组(Account Management / Group,表 fl_group�?
///
[SugarTable("fl_group")]
public class FlGroupDbEntity
{
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; } = string.Empty;
public bool IsDeleted { get; set; }
public DateTime CreationTime { get; set; }
public string? CreatorId { get; set; }
public string? LastModifierId { get; set; }
public DateTime? LastModificationTime { get; set; }
///
/// 组织名称(Group Name�?
///
public string GroupName { get; set; } = string.Empty;
///
/// 所属合作伙�?Id(fl_partner.Id�?
///
public string PartnerId { get; set; } = string.Empty;
///
/// 是否启用(对�?UI Active�?
///
public bool State { get; set; }
}