using DapperORMCore.Model.CoreModel; using System.Runtime.Serialization; namespace NXWMS.Model.AppModels.Condition.SysSettings { /// /// 参数查询条件 /// public class ParameterCondition : OperationInfo { /// /// 参数id /// public int? ParameterId { get; set; } /// /// ids /// public string ParameterIds { get; set; } /// /// 是否正在使用 /// public bool IsUsed { get; set; } /// /// 是否显示 /// public bool IsShow { get; set; } /// /// 参数编码 /// public string ParameterCode { get; set; } /// /// 参数编码 /// public string ParameterName { get; set; } /// /// 参数类别编码 /// public string ParameterType { get; set; } /// /// 参数值 /// public string ParameterValue { get; set; } /// /// 能否修改 /// public int AllowEditFlag { get; set; } /// /// 能否修改 /// public string Describe { get; set; } } }