You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.8 KiB

using System;
using SqlSugar;
namespace FactorySystemModel.SqlSugarModel
{
///<summary>
///数据关联表
///</summary>
[SugarTable("TFS_UnionModify")]
public partial class TFS_UnionModify
{
public TFS_UnionModify()
{
}
/// <summary>
/// Desc:唯一标识
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int FID { get; set; }
/// <summary>
/// Desc:原始表
/// Default:
/// Nullable:False
/// </summary>
public string FTableOriginal { get; set; }
/// <summary>
/// Desc:目标表
/// Default:
/// Nullable:False
/// </summary>
public string FTableTarget { get; set; }
/// <summary>
/// Desc:原始列
/// Default:
/// Nullable:False
/// </summary>
public string FColumnOriginal { get; set; }
/// <summary>
/// Desc:目标列
/// Default:
/// Nullable:False
/// </summary>
public string FColumnTarget { get; set; }
/// <summary>
/// Desc:联合条件
/// Default:
/// Nullable:False
/// </summary>
public string FUnionCondition { get; set; }
/// <summary>
/// Desc:删除状态1删除0未删除
/// Default:0
/// Nullable:False
/// </summary>
public int FDeleted { get; set; }
/// <summary>
/// Desc:添加时间
/// Default:DateTime.Now
/// Nullable:False
/// </summary>
public DateTime? FAddDate { get; set; }
}
}