This commit is contained in:
2023-05-31 10:19:05 +08:00
parent 1b65a7a9e5
commit 9c621c75cd
238 changed files with 9905 additions and 4034 deletions

View File

@@ -0,0 +1,47 @@
using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.Entity.System;
/// <summary>
/// 打印模板日志
/// 版 本V3.2
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2021-06-01.
/// </summary>
[SugarTable("BASE_PRINT_LOG")]
[Tenant(ClaimConst.TENANTID)]
public class PrintLogEntity : EntityBase<string>
{
/// <summary>
/// 打印人.
/// </summary>
[SugarColumn(ColumnName = "F_PrintMan")]
public string PrintMan { get; set; }
/// <summary>
/// 打印时间.
/// </summary>
[SugarColumn(ColumnName = "F_PrintTime")]
public DateTime? PrintTime { get; set; }
/// <summary>
/// 打印条数.
/// </summary>
[SugarColumn(ColumnName = "F_PrintNum")]
public int? PrintNum { get; set; }
/// <summary>
/// 打印功能名称.
/// </summary>
[SugarColumn(ColumnName = "F_PrintTitle")]
public string PrintTitle { get; set; }
/// <summary>
/// 打印模板id.
/// </summary>
[SugarColumn(ColumnName = "F_PrintId")]
public string PrintId { get; set; }
}