GuideUpdateDto.cs 787 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace WePlatform.WeLib.Guide.Dto
  6. {
  7. /// <summary>
  8. /// 引导信息库管理
  9. /// </summary>
  10. [AutoMapTo(typeof(GuideInfo))]
  11. public class GuideUpdateDto: EntityDto<string>
  12. {
  13. /// <summary>
  14. /// 提示名称
  15. /// </summary>
  16. [StringLength(GuideInfo.NameLength)]
  17. public string Name { get; set; }
  18. /// <summary>
  19. /// 提示详情
  20. /// </summary>
  21. [StringLength(GuideInfo.DescLength)]
  22. public string Description { get; set; }
  23. /// <summary>
  24. /// 提示类型
  25. /// </summary>
  26. public int GuideType { get; set; }
  27. }
  28. }