SysAttachFileUpdateDto.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.Application.Services.Dto;
  3. using Abp.AutoMapper;
  4. namespace ShwasherSys.BaseSysInfo.SysAttachFiles.Dto
  5. {
  6. [AutoMapTo(typeof(SysAttachFile))]
  7. public class SysAttachFileUpdateDto: EntityDto<int>
  8. {
  9. [StringLength(SysAttachFile.AttachNoMaxLength)]
  10. public string AttachNo { get; set; }
  11. [StringLength(SysAttachFile.TableNameMaxLength)]
  12. public string TableName { get; set; }
  13. [StringLength(SysAttachFile.ColumnNameMaxLength)]
  14. public string ColumnName { get; set; }
  15. [StringLength(SysAttachFile.SourceKeyMaxLength)]
  16. public string SourceKey { get; set; }
  17. [StringLength(SysAttachFile.FileTitleMaxLength)]
  18. public string FileTitle { get; set; }
  19. [StringLength(SysAttachFile.FileNameMaxLength)]
  20. public string FileName { get; set; }
  21. [StringLength(SysAttachFile.FilePathMaxLength)]
  22. public string FilePath { get; set; }
  23. [StringLength(SysAttachFile.FileTypeMaxLength)]
  24. public string FileType { get; set; }
  25. [StringLength(SysAttachFile.FileExtMaxLength)]
  26. public string FileExt { get; set; }
  27. [StringLength(SysAttachFile.DescriptionMaxLength)]
  28. public string Description { get; set; }
  29. public string FileInfo { get; set; }
  30. }
  31. }