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
  • WebEntity
  • base
  • BaseGatewaySN.cs
  • 增加网关配置数据同步接口
    b019ec80
    唐召明 authored
    2025-12-09 17:25:51 +0800  
    Browse Code »
BaseGatewaySN.cs 383 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using SqlSugar;
using System;

namespace Hh.Mes.POJO.WebEntity
{
    [SugarTable("base_gateway_sn")]
    public class BaseGatewaySN
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }

        public Guid GatewayKey { get; set; }

        public string SN { get; set; }

        public DateTime CreateTime { get; set; }
    }
}