using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
///
/// 打印模板配置
/// 版 本:V3.2
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
/// 日 期:2021-06-01.
///
[SugarTable("BASE_PRINTDEV")]
[Tenant(ClaimConst.TENANTID)]
public class PrintDevEntity : CLDEntityBase
{
///
/// 名称.
///
[SugarColumn(ColumnName = "F_FULLNAME")]
public string FullName { get; set; }
///
/// 编码.
///
[SugarColumn(ColumnName = "F_ENCODE")]
public string EnCode { get; set; }
///
/// 分类.
///
[SugarColumn(ColumnName = "F_CATEGORY")]
public string Category { get; set; }
///
/// 类型.
///
[SugarColumn(ColumnName = "F_TYPE")]
public int? Type { get; set; }
///
/// 描述.
///
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string Description { get; set; }
///
/// 排序.
///
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
///
/// 数据连接id.
///
[SugarColumn(ColumnName = "F_DBLINKID")]
public string DbLinkId { get; set; }
///
/// sql模板.
///
[SugarColumn(ColumnName = "F_SQLTEMPLATE")]
public string SqlTemplate { get; set; }
///
/// 左侧字段.
///
[SugarColumn(ColumnName = "F_LEFTFIELDS")]
public string LeftFields { get; set; }
///
/// 打印模板.
///
[SugarColumn(ColumnName = "F_PRINTTEMPLATE")]
public string PrintTemplate { get; set; }
[SugarColumn(ColumnName = "F_PAGEPARAM")]
public string PageParam { get; set; }
}