AttachFileDto.cs 573 B

12345678910111213141516171819
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. using VberZero.BaseSystem;
  4. namespace VberZero.AppService.Attaches.Dto;
  5. [AutoMapTo(typeof(SysAttach)), AutoMapFrom(typeof(SysAttach))]
  6. public class AttachFileDto : EntityDto<int>
  7. {
  8. public string CodeKey { get; set; }
  9. public string SourceKey { get; set; }
  10. public string FileTitle { get; set; }
  11. public string FileName { get; set; }
  12. public string FilePath { get; set; }
  13. public int FileType { get; set; }
  14. public string FileExt { get; set; }
  15. public string Description { get; set; }
  16. }