Files
HTCloud/HT.Cloud.Domain/Entity/ChartsManage/RtTechChartsEntity.cs

37 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace HT.Cloud.Domain.ChartsManage
{
/// <summary>
/// 创 建cdl
/// 日 期2023-02-23 11:10
/// 描 述:历史趋势实体类
/// </summary>
[SugarTable("htb_rttechcharts")]
public class RtTechChartsEntity
{
/// <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; }
}
}