namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps; /// /// 角色标签表 /// [EntityDescription(FieldIgnored = true)] public class T_Character_Label : DefaultEntityV4 { /// /// 标签名称 => 备注: 标签名称 /// public string? LabelName { get; set; } /// /// 创建时间 => 备注: 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新时间 => 备注: 更新时间 /// public DateTime UpdateTime { get; set; } /// /// 标签值 => 备注: 标签值 /// public string? LabelValue { get; set; } }