using SOA.Persistent; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IBKLinker_Minio.Entity.MinioController { public class StoragePath { /// /// 主键 /// public int Pk { get; set; } /// ///文件名称 /// public string FileName { get; set; } /// ///文件类型 /// public int FileType { get; set; } /// ///文件路径 /// public string FilePate { get; set; } } public class RequstStoragePath: StoragePath { public List requstStoragePaths { get; set; } } }