64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file=" ServerState.cs" company="HT.Cloud">
|
|
// * Copyright (C) HT.Cloud.Framework All Rights Reserved
|
|
// * version : 1.0
|
|
// * author : HT.Cloud.Framework
|
|
// * FileName: ServerState.cs
|
|
// * history : Created by T4 04/13/2020 11:54:49
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace HT.Cloud.Domain.SystemSecurity
|
|
{
|
|
/// <summary>
|
|
/// ServerState Entity Model
|
|
/// </summary>
|
|
[SugarTable("sys_serverstate")]
|
|
[TenantAttribute("0")]
|
|
public class ServerStateEntity : IEntity<ServerStateEntity>
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true, ColumnDescription = "主键Id")]
|
|
public string F_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网站站点
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnName = "F_WebSite", ColumnDataType = "nvarchar(200)", ColumnDescription = "网站站点")]
|
|
public string F_WebSite { get; set; }
|
|
|
|
/// <summary>
|
|
/// ARM
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnName = "F_ARM", ColumnDataType = "nvarchar(50)", ColumnDescription = "ARM")]
|
|
public string F_ARM { get; set; }
|
|
|
|
/// <summary>
|
|
/// CPU
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnName = "F_CPU", ColumnDataType = "nvarchar(50)", ColumnDescription = "CPU")]
|
|
public string F_CPU { get; set; }
|
|
|
|
/// <summary>
|
|
/// IIS
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnName = "F_IIS", ColumnDataType = "nvarchar(50)", ColumnDescription = "IIS")]
|
|
public string F_IIS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "日期")]
|
|
public DateTime F_Date { get; set; }
|
|
|
|
/// <summary>
|
|
/// 次数
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "次数")]
|
|
public int F_Cout { get; set; }
|
|
}
|
|
} |