提交代码

This commit is contained in:
2024-12-24 19:04:32 +08:00
parent 2e3c34c38c
commit 189a020cc7
78 changed files with 9689 additions and 2214 deletions
+32
View File
@@ -0,0 +1,32 @@
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; }
}
}