using System; namespace Zxd.Entity.Zxd { public class MeetingParticipant { public MeetingParticipant() { } [Key] public int Id { get; set; } [Column("meeting_id")] public int MeetingId { get; set; } public int Eid { get; set; } /// /// 参与人 /// public string? Paricipant { get; set; } public virtual Meeting? Meeting { get; set; } } }