提交代码

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
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace Model
{
[Serializable]
public class NoticeOutput
{
public string NoticeId { get; set; }
public string NoticeCode { get; set; }
public string NoticeTitle { get; set; }
public string MainContent { get; set; }
public string CompileManName { get; set; }
public DateTime? CompileDate { get; set; }
public string AttachUrl { get; set; }
}
}