123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.System
- {
-
-
-
- public class MessageDto
- {
-
-
-
-
-
-
-
-
-
- public MessgeTypeEnum Type { get; set; }
-
-
-
- public int IssuerId { get; set; }
- public int DiId { get; set; } = 0;
-
-
-
- public string Title { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public DateTime ReleaseTime { get; set; }
-
-
-
- public List<int> UIdList { get; set; }
- }
- }
|