Files
tnb.server/system/Tnb.Systems.Entitys/Entity/System/PrintLogEntity.cs
2024-04-23 10:16:16 +08:00

48 lines
1.2 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 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; }
}