base_gateway_vpnsim_rel.cs 949 Bytes
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Security.Principal;
using System.Text;

namespace Hh.Mes.POJO.WebEntity
{
    [SugarTable("base_gateway_vpnsim_rel")]
    public class base_gateway_vpnsim_rel
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        /// <summary>
        /// 网关
        /// </summary>
        [SugarColumn(ColumnDescription = "网关Key", IsNullable = true)]
        public Guid gatewayKey { 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; }
    }
}