using SqlSugar;
namespace UIStandardWebApi.Entity
{
///
/// ip 端口号保存
///
[SugarTable("Sys_Socket")]
public class Sys_Socket : Sys_BaseModel
{
///
/// ID
///
[SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)]
public int Id { get; set; }
///
/// iP
///
[SugarColumn(IsNullable = true)]
public string? IP { get; set; }
///
/// 端口号
///
[SugarColumn(IsNullable = true)]
public string? Port { get; set; }
}
}