using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.PrintDev;
///
/// 打印模板信息输出.
///
[SuppressSniffer]
public class PrintDevInfoOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 名称.
///
public string fullName { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 分类.
///
public string category { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 状态.
///
public int? type { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 数据连接id.
///
public string dbLinkId { get; set; }
///
/// sql模板.
///
public string sqlTemplate { get; set; }
///
/// 左侧字段.
///
public string leftFields { get; set; }
///
/// 打印模板.
///
public string printTemplate { get; set; }
///
/// 纸张参数.
///
public string pageParam { get; set; }
}