using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity { /// /// /// 文件名(File Name): NotificationAnnouncement.cs /// /// 描述(Description): 通知公告实体类 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年4月20日15:21:22 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// public class NotificationAnnouncement { /// /// 消息类别 /// public string MessageCategory { get; set; } /// /// 按钮名称 /// public string BtnName { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 具体内容 /// public string SpecificContent { get; set; } } }