- Region 表新增热度列,热门省份优先显示 - 区县下拉按地级市分组、已录区县优先、支持全省搜索 - 组选择内置一组至二十组 - 银行卡号独立行+粗体预览,开户行独立行 - 新增农户类型:农户/个体户/合作社/经营集体/公司 - 身份证正反面支持高拍仪/摄像头OCR与手机扫码上传,附件存本地/OSS - 新增农户头像采集组件(摄像头/本地上传),预留人脸识别收购扩展 - 同名村弹窗提醒(防选错乡镇) - 编辑窗体禁止遮罩/Esc误关,整体加宽适配高频操作 - 修复二维码局域网手机无法访问(监听0.0.0.0、局域网IP识别、Vite代理兜底)
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using System.Collections.Concurrent;
|
||
|
||
namespace AgriculturalPlatform.Api.Services;
|
||
|
||
/// <summary>手机传图上传会话(内存存储,10 分钟过期)</summary>
|
||
public sealed class MobileUploadSession
|
||
{
|
||
public string Code { get; init; } = string.Empty;
|
||
public DateTime CreatedAt { get; init; } = DateTime.Now;
|
||
public StoredFile? Front { get; set; }
|
||
public StoredFile? Back { get; set; }
|
||
public IdCardOcrResult? FrontOcr { get; set; }
|
||
public IdCardOcrResult? BackOcr { get; set; }
|
||
public bool Done { get; set; }
|
||
}
|
||
|
||
/// <summary>手机传图上传会话存储(单机内存版,后续可换 Redis)</summary>
|
||
public sealed class MobileUploadSessionStore
|
||
{
|
||
private static readonly TimeSpan Expire = TimeSpan.FromMinutes(10);
|
||
private readonly ConcurrentDictionary<string, MobileUploadSession> _sessions = new();
|
||
|
||
public string Create()
|
||
{
|
||
Cleanup();
|
||
var code = Guid.NewGuid().ToString("N")[..8].ToUpperInvariant();
|
||
_sessions[code] = new MobileUploadSession { Code = code };
|
||
return code;
|
||
}
|
||
|
||
public MobileUploadSession? Get(string code)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(code)) return null;
|
||
return _sessions.TryGetValue(code.Trim().ToUpperInvariant(), out var s) ? s : null;
|
||
}
|
||
|
||
public void Remove(string code) => _sessions.TryRemove(code, out _);
|
||
|
||
private void Cleanup()
|
||
{
|
||
var now = DateTime.Now;
|
||
foreach (var kv in _sessions)
|
||
{
|
||
if (now - kv.Value.CreatedAt > Expire) _sessions.TryRemove(kv.Key, out _);
|
||
}
|
||
}
|
||
}
|