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