using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Condition.Rule { /// /// 打印模版 /// public class PrintTemplateCondition : OperationInfo { /// /// 模版Id /// public int? TemplateId { get; set; } /// /// 模版Ids /// public string TemplateIds { get; set; } /// /// 模版编码 /// public string TemplateCode { get; set; } /// /// 打印个数 /// public int? PrintNumber { get; set; } /// /// 模版名称 /// public string TemplateName { get; set; } /// /// 打印方式 /// public int PrintMode { get; set; } /// /// 是否打印表头 /// public bool IsPrintHeader { get; set; } /// /// 是否显示水印 /// public bool IsShowWatermark { get; set; } /// /// 是否显示logo /// public bool IsShowLogo { get; set; } /// /// 数据源类型 /// public int SourceType { get; set; } /// /// 数据源内容 /// public string SourceContent { get; set; } /// /// 数据源名称 /// public string SourceName { get; set; } /// /// 数据源编码 /// public string SourceCode { get; set; } /// /// 备注 /// public string Describe { get; set; } /// /// 是否使用 /// public bool IsUsed { get; set; } } }