SysAttachFileDto.cs 661 B

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