using DapperORMCore.Model.CoreModel; using System.Runtime.Serialization; namespace NXWMS.Model.AppModels.Condition.SysSettings { /// /// 参数查询条件 /// public class ParameterSearchCondition : PageQueryConditionInfo { /// /// 参数id /// public int? ParameterId { get; set; } /// /// 参数编码 /// public string ParameterCode { get; set; } /// /// 参数名称 /// public string ParameterName { get; set; } /// /// 参数类别编码 /// public string ParameterType { get; set; } /// /// 能否修改 /// public int? AllowEditFlag { get; set; } /// /// 启用标志 /// public bool? IsUsed { get; set; } } }