using Abp.Application.Services.Dto; using Abp.AutoMapper; using WePlatform.BaseInfo; namespace WePlatform.BaseSystem.AttachFile.Dto { [AutoMapTo(typeof(SysAttachFile)), AutoMapFrom(typeof(SysAttachFile))] public class AttachFileDto : EntityDto { public string AttachNo { get; set; } public string TableName { get; set; } public string ColumnName { get; set; } public string SourceKey { get; set; } public string FileTitle { get; set; } public string FileName { get; set; } public string FilePath { get; set; } public string FileType { get; set; } public string FileExt { get; set; } public string Description { get; set; } } }