base_sim_vpn_rel.cs 751 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(ColumnDescription = "sim", IsNullable = true)]
        public Guid simKey { get; set; }

        /// <summary>
        /// VPN-Key
        /// </summary>
        [SugarColumn(ColumnDescription = "VPN-Key", IsNullable = true)]
        public Guid vpnKey { get; set; }

    }
}