base_sim_gateway_rel.cs
779 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// SIM卡网关关联关系
/// </summary>
[SugarTable("base_sim_gateway_rel")]
public partial class base_sim_gateway_rel : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// SIM卡key
/// </summary>
[SugarColumn(ColumnDescription = "SIM卡key", IsNullable = true)]
public Guid simKey { get; set; }
/// <summary>
/// 网关
/// </summary>
[SugarColumn(ColumnDescription = "网关Key", IsNullable = true)]
public Guid gatewayKey { get; set; }
}
}