Sign in

MES / IOT · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • IOT
  • sys
  • Hh.Mes.POJO
  • LicenseEntity
  • SnInfo.cs
  • 添加 SN 查询功能及相关数据模型 ...
    0768464c
    在 `BaseController.cs` 中添加对 `Hh.Mes.Common.Json` 的引用。
    在 `BulletinBoardService.cs` 中添加多个命名空间引用,并实现 SN 存在性检查。
    修复 `response.data` 的赋值格式,移除 `BaseEquipmentController.cs` 中不必要的引用。
    在 `appsettings.json` 中添加 `BaseLicenseContext` 数据库连接字符串。
    新增 `SnInfo` 类和 `SnProgressVM`、`SnProgressItem` 视图模型。
    实现 `SnProgressController` 控制器,处理 SN 查询逻辑。
    在 `Index.cshtml` 中添加 SN 查询表单及结果展示,使用 Layui 框架进行样式处理。
    唐召明 authored
    2025-05-13 10:40:15 +0800  
    Browse Dir »
SnInfo.cs 234 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
using SqlSugar;

namespace Hh.Mes.POJO.LicenseEntity
{
    public class SnInfo
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        public string Sn { get; set; }
    }
}