009_DI-Elec/SWSDBSchemeUpgradeTool/Entity/ec_business_tableEntity.cs

68 lines
1.9 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 SqlSugar;
using System;
namespace Learun.Application.TwoDevelopment.ZZDT_EC
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2022-03-14 10:58
/// 描 述:业务表
/// </summary>
[SugarTable(TableName = "ec_business_table")]
public class ec_business_tableEntity
{
#region
/// <summary>
/// 业务表ID
/// </summary>
/// <returns></returns>
[SugarColumn(IsPrimaryKey = true)]
public string BusinessTableID { get; set; }
/// <summary>
/// 业务表名称
/// </summary>
/// <returns></returns>
public string BusinessTableName { get; set; } = "";
/// <summary>
/// 业务表编号
/// </summary>
/// <returns></returns>
public string BusinessTableCode { get; set; } = "";
/// <summary>
/// 是否复制数据
/// </summary>
/// <returns></returns>
public int? IsCopyData { get; set; }
/// <summary>
/// 备注
/// </summary>
/// <returns></returns>
public string Remark { get; set; } = "";
/// <summary>
/// 创建人
/// </summary>
/// <returns></returns>
public string CreateUserID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
/// <returns></returns>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
/// <returns></returns>
public string UpdateUserID { get; set; }
/// <summary>
/// 更新时间
/// </summary>
/// <returns></returns>
public DateTime? UpdateTime { get; set; }
#endregion
}
}