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 { /// /// 设备连接参数信息字段类 /// [SugarTable("t_bs_net_eqm_param_info")] public partial class BsNetEqmParamInfo { /// /// 索引 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "f_id")] public int Id { get; set; } /// /// 设备类型编号 /// [SugarColumn(ColumnName = "f_eqm_type_no")] public int EqmTypeNo { get; set; } /// /// 设备类型名称 /// [SugarColumn(ColumnName = "f_eqm_type_name")] public string EqmTypeName { get; set; } /// /// 设备编码 /// [SugarColumn(ColumnName = "f_eqm_code")] public string EqmCode { get; set; } /// /// 设备序号 /// [SugarColumn(ColumnName = "f_eqm_sn")] public int EqmSn { get; set; } /// /// 连接地址 /// [SugarColumn(ColumnName = "f_net_addr")] public string NetAddr { get; set; } /// /// 连接端口 /// [SugarColumn(ColumnName = "f_net_port")] public string NetPort { get; set; } /// /// 目的地址 /// [SugarColumn(ColumnName = "f_dest_addr")] public string DestAddr { get; set; } } }