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.
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.02
/// 描 述:表单模板
/// </summary>
[SugarTable("form_scheme")]
public partial class FormScheme
{
#region 实体成员
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get ; set ; }
/// <summary>
/// 模板信息主键
/// </summary>
public string SchemeInfoId { get ; set ; }
/// <summary>
/// 1.正式2.草稿
/// </summary>
public int? Type { get ; set ; }
/// <summary>
/// 模板
/// </summary>
public string Scheme { get ; set ; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime ? CreateDate { get ; set ; }
/// <summary>
/// 创建用户主键
/// </summary>
public string CreateUserId { get ; set ; }
/// <summary>
/// 创建用户
/// </summary>
public string CreateUserName { get ; set ; }
# endregion
#region 多租户
/// <summary>
/// 租户ID
/// </summary>
public string TenantId { get ; set ; }
# endregion
}
}