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.

61 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.DbModel.Station
{
///<summary>
///设备通信信息表
///</summary>
[SugarTable("equip_net_info")]
public partial class EquipNetInfo : BaseModel
{
public EquipNetInfo(){
}
/// <summary>
/// Desc:设备id
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:设备编码
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="code")]
public string Code {get;set;}
/// <summary>
/// Desc:连接地址
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="net_addr")]
public string NetAddr {get;set;}
/// <summary>
/// Desc:连接端口
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="net_port")]
public string NetPort {get;set;}
/// <summary>
/// Desc:目的地址;十六进制如0a,02,03,04
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="dest_addr")]
public string DestAddr {get;set;}
}
}