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 PrintTemplateSearchCondition : PageQueryConditionInfo
{
///
/// 模版编码
///
public string TemplateCode { get; set; }
///
/// 模版名称
///
public string TemplateName { get; set; }
///
/// 数据源名称
///
public string SourceName { get; set; }
///
/// 打印方式
///
public int? PrintMode { get; set; }
///
/// 是否打印表头
///
public bool? IsPrintHeader { get; set; }
///
/// 是否使用
///
public bool? IsUsed { get; set; }
}
}