BaseGatewaySN.cs
383 Bytes
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; }
}
}