AttachFileDto.cs 731 B

123456789101112131415161718192021
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. using WePlatform.BaseInfo;
  4. namespace WePlatform.BaseSystem.AttachFile.Dto
  5. {
  6. [AutoMapTo(typeof(SysAttachFile)), AutoMapFrom(typeof(SysAttachFile))]
  7. public class AttachFileDto : EntityDto<int>
  8. {
  9. public string AttachNo { get; set; }
  10. public string TableName { get; set; }
  11. public string ColumnName { get; set; }
  12. public string SourceKey { get; set; }
  13. public string FileTitle { get; set; }
  14. public string FileName { get; set; }
  15. public string FilePath { get; set; }
  16. public string FileType { get; set; }
  17. public string FileExt { get; set; }
  18. public string Description { get; set; }
  19. }
  20. }