增加连接串加密,粤北安装版本封存

This commit is contained in:
dell
2023-09-07 17:21:02 +08:00
parent 28b59aa70e
commit b94dc66092
30 changed files with 799 additions and 426 deletions

View 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; }
}
}