BulletinInfoDto.cs 736 B

12345678910111213141516171819202122
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.NotificationInfo;
  5. namespace ShwasherSys.NotificationInfo.Dto
  6. {
  7. [AutoMapTo(typeof(BulletinInfo)),AutoMapFrom(typeof(BulletinInfo))]
  8. public class BulletinInfoDto: EntityDto<int>
  9. {
  10. public string BulletinType { get; set; }
  11. public string BulletinTypeName { get; set; }
  12. public string Title { get; set; }
  13. public string Content { get; set; }
  14. public DateTime? TimeCreated { get; set; }
  15. public DateTime? TimeLastMod { get; set; }
  16. public string UserIDLastMod { get; set; }
  17. public string Promulgator { get; set; }
  18. public DateTime? PromulgatTime { get; set; }
  19. public DateTime? ExpirationDate { get; set; }
  20. }
  21. }