Files
WMS-Api/src/WMS.Web.Domain/Options/QiniuOptions.cs
18942506660 97c83b9aa3 导出列表
2023-11-14 14:59:02 +08:00

32 lines
746 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Options
{
/// <summary>
/// 七牛云 配置
/// </summary>
public class QiniuOptions
{
/// <summary>
/// 访问key
/// </summary>
public string AccessKey { get; set; }
/// <summary>
/// 秘钥
/// </summary>
public string SecretKey { get; set; }
/// <summary>
/// 区块文件夹
/// </summary>
public string Bucket { get; set; }
/// <summary>
/// 访问域名
/// </summary>
public string Url { get; set; }
//导出数据一页条数
public int PageSize { get; set; } = 50000;
}
}