12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.System
- {
-
-
-
-
- public class MsgDto:DtoBase
- {
-
-
-
- public int UserId { get; set; }
- }
-
-
-
-
- public class MsgTypeDto : PortDtoBase
- {
-
-
-
- public int UserId { get; set; }
- }
- public class PotsMessagePageListDto : DtoBase
- {
-
-
-
-
- public int Type { get; set; }
- public int UserId { get; set; }
- }
-
-
-
-
- public class MsgInfoDto : DtoBase
- {
-
-
-
- public int MsgId { get; set; }
- }
-
-
-
-
- public class MsgSetReadDto : PortDtoBase
- {
-
-
-
- public int MsgAnthId { get; set; }
- }
-
-
-
-
- public class MsgDeleteDto : DtoBase
- {
-
-
-
- public int MsgId { get; set; }
-
-
-
- public int UserId { get; set; }
- }
- }
|