完善系统参数配置和数据字典管理模块

This commit is contained in:
2026-09-18 17:22:56 +08:00
parent 6aca0297bb
commit 60fac00887
30 changed files with 2510 additions and 24 deletions
+14 -1
View File
@@ -1,4 +1,4 @@
using SqlSugar;
using SqlSugar;
namespace Model.Entity.Asset
{
@@ -73,6 +73,19 @@ namespace Model.Entity.Asset
[SugarColumn(Length = 50, IsNullable = true)]
public string? QrCode { get; set; }
/// <summary>
/// 二维码扫码直达 URL(生成二维码时写入,扫码后跳转设备台账详情)
/// 形如 http://host/asset/ledger/equipment?id={Id};为空表示尚未生成二维码
/// </summary>
[SugarColumn(Length = 500, IsNullable = true)]
public string? QrCodeUrl { get; set; }
/// <summary>
/// RFID 编号(绑定时写入,用于 RFID 标签识别设备)
/// </summary>
[SugarColumn(Length = 64, IsNullable = true)]
public string? RfidCode { get; set; }
/// <summary>
/// 设备描述
/// </summary>