暂存修改

This commit is contained in:
dell
2024-10-31 23:45:24 +08:00
parent 4a1f0c348b
commit b684f2501e
17 changed files with 10123 additions and 5 deletions

View File

@ -0,0 +1,43 @@
using System;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace HT.Cloud.Domain.ReportManage
{
/// <summary>
/// 创 建cdl
/// 日 期2023-04-26 14:43
/// 描 述:历史信息表实体类
/// </summary>
[SugarTable("HT_SYS_TIMEZONET")]
[TenantAttribute("1")]
public class Ht_Sys_TimeZoneEntity
{
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName="Id", ColumnDescription = "",ColumnDataType = "int",IsPrimaryKey = true)]
public int Id { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "TimeZoneType", ColumnDescription = "",ColumnDataType = "nvarchar(128)")]
public string TimeZoneType { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "TimeZoneStart", ColumnDescription = "",ColumnDataType = "nvarchar(16)")]
public string TimeZoneStart { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "TimeZoneEnd", ColumnDescription = "",ColumnDataType = "nvarchar(16)")]
public string TimeZoneEnd { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName= "Description", ColumnDescription = "",ColumnDataType = "nvarchar(128)")]
public string Description { get; set; }
}
}