base_sim_vpn_rel.cs
815 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// SIM卡VPN关联关系
/// </summary>
[SugarTable("base_sim_vpn_rel")]
public partial class base_sim_vpn_rel : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// sim卡卡号
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "sim卡卡号", IsNullable = true)]
public string simNumber { get; set; }
/// <summary>
/// VPN账号
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "VPN账号", IsNullable = true)]
public string accountNumber { get; set; }
}
}