业务系统通知列表

This commit is contained in:
2022-04-25 13:41:14 +08:00
parent 04a608c28b
commit 2d25ebd7ce
5 changed files with 71 additions and 3 deletions
@@ -17,6 +17,10 @@ namespace IRaCIS.Core.Application.ViewModel
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
public string CreateUserName { get; set; }
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; }
@@ -75,6 +79,19 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid[] NoticeUserTypeIdList { get; set; }
}
public class SystemNoticeReadDTO: SystemNoticeBasicInfo
{
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
public string CreateUserName { get; set; }
public string FullFilePath { get; set; }
public bool IsRead { get; set; }
}
public class SystemNoticeUserTypeView
{
public Guid Id { get; set; }