ComplianceServer/code/Hg.Core.Entity/MeetingParticipant.cs

28 lines
463 B
C#

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