27 lines
429 B
C#
27 lines
429 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 参与人
|
|
/// </summary>
|
|
public string? Paricipant { get; set; }
|
|
|
|
public virtual Meeting? Meeting { get; set; }
|
|
}
|
|
}
|
|
|