2023-03-03 16:07:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace HT.Cloud.Domain.ChartsManage
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创 建:cdl
|
|
|
|
|
/// 日 期:2023-03-01 15:05
|
|
|
|
|
/// 描 述:实时趋势实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("htb_rtcharts")]
|
2023-08-24 09:28:09 +08:00
|
|
|
|
[TenantAttribute("1")]
|
|
|
|
|
public class RtchartsEntity
|
2023-03-03 16:07:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="htno", ColumnDescription = "ID",ColumnDataType = "int(10)",IsPrimaryKey = true)]
|
|
|
|
|
public int htno { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 远程数据服务器地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="remotertdataserver", ColumnDescription = "远程数据服务器地址",ColumnDataType = "varchar(128)", IsNullable = true)]
|
|
|
|
|
public string remotertdataserver { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// chart初始化点数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="inittime", ColumnDescription = "chart初始化点数",ColumnDataType = "int(10)", IsNullable = true)]
|
|
|
|
|
public int? inittime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// chart显示的最大点数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName="maxpoint", ColumnDescription = "chart显示的最大点数",ColumnDataType = "int(10)", IsNullable = true)]
|
|
|
|
|
public int? maxpoint { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|