v3.4.6
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
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_COMMONWORDS")]
|
||||
public class CommonWordsEntity : CLDEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 应用id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_SYSTEMIDS")]
|
||||
public string SystemIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_SYSTEMNAMES")]
|
||||
public string SystemNames { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 常用语.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_COMMONWORDSTEXT")]
|
||||
public string CommonWordsText { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 常用语类型(0:系统,1:个人).
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_COMMONWORDSTYPE")]
|
||||
public int CommonWordsType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_SORTCODE")]
|
||||
public long SortCode { get; set; }
|
||||
}
|
||||
@@ -73,4 +73,6 @@ public class PrintDevEntity : CLDEntityBase
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_PRINTTEMPLATE")]
|
||||
public string PrintTemplate { get; set; }
|
||||
[SugarColumn(ColumnName = "F_PAGEPARAM")]
|
||||
public string PageParam { get; set; }
|
||||
}
|
||||
47
system/Tnb.Systems.Entitys/Entity/System/PrintLogEntity.cs
Normal file
47
system/Tnb.Systems.Entitys/Entity/System/PrintLogEntity.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user