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

85 lines
2.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 日 期2024.03.06
/// 描 述:自定义表单历史记录实体
/// </summary>
[SugarTable("form_datahistory")]
public class FormDataHistory
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary>
/// 表名
/// </summary>
public string TableName { get; set; }
/// <summary>
/// 表主键
/// </summary>
public string TablePKey { get; set; }
/// <summary>
/// 表主键的值
/// </summary>
public string TablePKeyValue { get; set; }
/// <summary>
/// 更新表的字段
/// </summary>
public string TableField { get; set; }
/// <summary>
/// 表单id
/// </summary>
public string SchemeId { get; set; }
/// <summary>
/// 表单信息id
/// </summary>
public string SchemeInfoId { get; set; }
/// <summary>
/// 表单显示名
/// </summary>
public string FormColumn { get; set; }
/// <summary>
/// 旧值value
/// </summary>
public string OldVal { get; set; }
/// <summary>
/// 新值value
/// </summary>
public string NewVal { get; set; }
/// <summary>
/// 旧显示值
/// </summary>
public string OldShowVal { get; set; }
/// <summary>
/// 新显示值
/// </summary>
public string NewShowVal { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string Creator { get; set; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime? CreaterTime { get; set; }
#region 多租户
/// <summary>
/// 租户ID
/// </summary>
public string TenantId { get; set; }
#endregion
}
}