提交代码

This commit is contained in:
2024-12-25 15:43:38 +08:00
parent 0a2f9ea3a7
commit c0b489aaf4
79 changed files with 8536 additions and 1546 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; }
}
}