Compare commits
No commits in common. "ecbc27fbb8e8d571bcc0863956fa68de5caf5f3d" and "405454f71f0e88bb11562a3845eac508e97abf23" have entirely different histories.
ecbc27fbb8
...
405454f71f
|
|
@ -10,7 +10,6 @@ namespace IRaCIS.Core.Application.Helper
|
|||
|
||||
public static class CacheKeys
|
||||
{
|
||||
//项目缓存
|
||||
public static string Trial(string trialIdStr) => $"TrialId:{trialIdStr}";
|
||||
|
||||
//检查编号递增锁
|
||||
|
|
@ -34,6 +33,8 @@ namespace IRaCIS.Core.Application.Helper
|
|||
//超时没请求接口自动退出
|
||||
public static string UserAutoLoginOut(Guid userId) => $"UserAutoLoginOut:{userId}";
|
||||
|
||||
// 你可以为其他实体和模块定义更多的键
|
||||
|
||||
/// <summary>
|
||||
/// 跳过阅片
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -109,13 +109,17 @@ namespace IRaCIS.Core.Application.Helper
|
|||
public string AccessKeyId { get; set; }
|
||||
public string AccessKeySecret { get; set; }
|
||||
|
||||
|
||||
public string EndPoint { get; set; }
|
||||
public string BucketName { get; set; }
|
||||
|
||||
|
||||
public string Region { get; set; }
|
||||
|
||||
public string ViewEndpoint { get; set; }
|
||||
|
||||
|
||||
|
||||
public string SecurityToken { get; set; }
|
||||
public DateTime Expiration { get; set; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue