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