ShortMsgDetailDto.cs 777 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using Abp.AutoMapper;
  4. using Abp.Application.Services.Dto;
  5. using ShwasherSys.NotificationInfo;
  6. namespace ShwasherSys.NotificationInfo.Dto
  7. {
  8. [AutoMapTo(typeof(ShortMsgDetail)),AutoMapFrom(typeof(ShortMsgDetail))]
  9. public class ShortMsgDetailDto: EntityDto<int>
  10. {
  11. public int MsgID { get; set; }
  12. public string Title { get; set; }
  13. public string Content { get; set; }
  14. public string SendUserID { get; set; }
  15. public DateTime? SendTime { get; set; }
  16. public string RecvUserID { get; set; }
  17. public string IsRead { get; set; }
  18. }
  19. public class NoticeAlarmDto
  20. {
  21. public int Total { get; set; }
  22. public List<ShortMsgDetailDto> Items { get; set; }
  23. }
  24. }