NotificationAnnouncement.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CollaborativePlatformProject.CollaborationPlatform.Entity
  7. {
  8. /// <summary>
  9. ///
  10. /// <para>⽂件名(File Name):     通知公告实体类.cs</para>
  11. ///
  12. /// <para>描述(Description):     </para>
  13. ///
  14. /// <para>数据表(Tables):       nothing</para>
  15. ///
  16. /// <para>作者(Author):         Sun Zheng Ji</para>
  17. ///
  18. /// <para>⽇期(Create Date):     </para>
  19. ///
  20. /// 修改记录(Revision History):
  21. ///     R1:
  22. ///         修改作者:
  23. ///         修改⽇期:
  24. ///         修改理由:
  25. ///
  26. /// </summary>
  27. public class NotificationAnnouncement
  28. {
  29. /// <summary>
  30. /// 消息类别
  31. /// </summary>
  32. public string MessageCategory { get; set; }
  33. /// <summary>
  34. /// 按钮名称
  35. /// </summary>
  36. public string BtnName { get; set; }
  37. /// <summary>
  38. /// 内容
  39. /// </summary>
  40. public string Content { get; set; }
  41. /// <summary>
  42. /// 具体内容
  43. /// </summary>
  44. public string SpecificContent { get; set; }
  45. }
  46. }