暂存修改
This commit is contained in:
43
HT.Cloud.Domain/Entity/ReportManage/Ht_Sys_TimeZoneEntity.cs
Normal file
43
HT.Cloud.Domain/Entity/ReportManage/Ht_Sys_TimeZoneEntity.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user