sunpengfei
2025-08-07 7620ece055c34a13c868d846f4f34cd0a0fb3c4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core.Enums.Common
{
    /// <summary>
    /// 文件存储通道
    /// </summary>
    public enum EnumFileStoreAccess
    {
        /// <summary>
        /// 本地
        /// </summary>
        Local = 10,
        /// <summary>
        /// 阿里云OSS
        /// </summary>
        AliyunOSS = 20
    }
}