baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using iWare.Wms.Core;
using iWare.Wms.Core.Service;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 上传文件参数
    /// </summary>
    public class FilePageInput : PageInputBase
    {
        /// <summary>
        /// 文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地)
        /// </summary>
        public int FileLocation { get; set; }
 
        /// <summary>
        /// 文件仓库
        /// </summary>
        public string FileBucket { get; set; }
 
        /// <summary>
        /// 文件名称(上传时候的文件名)
        /// </summary>
        public string FileOriginName { get; set; }
    }
 
    public class DeleteFileInfoInput : BaseId
    {
    }
 
    public class QueryFileInfoInput : BaseId
    {
    }
}