SGGL_SGY/SGGL/Model/ZHGL/DataSync/MeetingOutput.cs

32 lines
779 B
C#

using System;
namespace Model
{
public class MeetingOutput:BaseEntities
{
/// <summary>
/// 标题
/// </summary>
public string MeetingName { get; set; }
/// <summary>
/// 日期
/// </summary>
public DateTime? MeetingDate { get; set; }
/// <summary>
///
/// </summary>
public decimal? MeetingHours { get; set; }
/// <summary>
/// 主持人
/// </summary>
public string HostMan { get; set; }
/// <summary>
/// 参会人数
/// </summary>
public int? AttentPersonNum { get; set; }
/// <summary>
/// 参会人员
/// </summary>
public string AttentPerson { get; set; }
}
}