Blame view

sys/Hh.Mes.POJO/WebEntity/base/base_sim_gateway_rel.cs 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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>
        /// SIMkey
        /// </summary>
        [SugarColumn(ColumnDescription = "SIM卡key", IsNullable = true)]
        public Guid simKey { get; set; }

        /// <summary>
        /// 网关
        /// </summary>
        [SugarColumn(ColumnDescription = "网关Key", IsNullable = true)]
        public Guid gatewayKey { get; set; }

    }
}