using DapperORMCore.Model.CoreModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace NXWMS.Model.AppModels.Condition.Rule
{
///
/// 导入模版查询
///
public class ImportTemplateSearchCondition: PageQueryConditionInfo
{
///
/// 模版编码
///
public string TemplateCode { get; set; }
///
/// 模版名称
///
public string TemplateName { get; set; }
///
/// 导入方式
///
public string ImportMode { get; set; }
///
/// 源对象名称
///
public string SourceObjName { get; set; }
///
/// 是否使用
///
public bool? IsUsed { get; set; }
}
}