You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Principal;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HybirdFrameworkEntity.DbModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备连接参数信息字段类
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("t_bs_net_eqm_param_info")]
|
|
|
|
|
public partial class BsNetEqmParamInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 索引
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "f_id")]
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备类型编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_eqm_type_no")]
|
|
|
|
|
public int EqmTypeNo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备类型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_eqm_type_name")]
|
|
|
|
|
public string EqmTypeName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_eqm_code")]
|
|
|
|
|
public string EqmCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_eqm_sn")]
|
|
|
|
|
public int EqmSn { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 连接地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_net_addr")]
|
|
|
|
|
public string NetAddr { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 连接端口
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_net_port")]
|
|
|
|
|
public string NetPort { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 目的地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "f_dest_addr")]
|
|
|
|
|
public string DestAddr { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|