增加连接串加密,粤北安装版本封存
This commit is contained in:
55
HT.Cloud.Domain/Entity/ReportManage/RTMainPageEntity.cs
Normal file
55
HT.Cloud.Domain/Entity/ReportManage/RTMainPageEntity.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HT.Cloud.Domain.ReportManage
|
||||
{
|
||||
/// <summary>
|
||||
/// 创 建:cdl
|
||||
/// 日 期:2023-03-30 14:52
|
||||
/// 描 述:实时报表SQL转换实体类
|
||||
/// </summary>
|
||||
[SugarTable("HT_REALTIME_MAINPAGE")]
|
||||
[TenantAttribute("1")]
|
||||
public class RTMainPageEntity
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "ID", ColumnDescription = "", ColumnDataType = "int(10)")]
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 元素在主页位置
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "ElementIndex", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
|
||||
public string ElementIndex { get; set; }
|
||||
/// <summary>
|
||||
/// 变量名称
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "TagName", ColumnDescription = "", ColumnDataType = "int(128)", IsNullable = true)]
|
||||
public string TagName { get; set; }
|
||||
/// <summary>
|
||||
/// 显示名称
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "Description", ColumnDescription = "", ColumnDataType = "int(128)", IsNullable = true)]
|
||||
public string Description { get; set; }
|
||||
/// <summary>
|
||||
/// 内容
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "HREQ", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
|
||||
public string Hreq { get; set; }
|
||||
/// <summary>
|
||||
/// 表达式
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "HSIG", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
|
||||
public string Hsig { get; set; }
|
||||
/// <summary>
|
||||
/// 单位
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "Units", ColumnDescription = "", ColumnDataType = "int(64)", IsNullable = true)]
|
||||
public string Units { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user