using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// Ocr上传后返回 /// public class OcrUploadOutputDto { /// /// OCR返回文件名(后面调用OCR获取内容时使用) /// public string OcrFileName { get; set; } /// /// 上传附件的文件名 /// public string UploadFileName { get; set; } } }