using NXWMS.Model.CoreModels; using NXWMS.String.Enums; 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 { /// /// 主键查询条件 /// public class SequenceSearchCondition: OperationInfo { /// /// 序列ID /// public int? SQId { get; set; } /// /// 多个序列ID /// public string SQIds { get; set; } /// /// 是否正在使用 /// public bool? IsUsed { get; set; } /// /// 主键 /// public string NewId { get; set; } /// /// 序列编码 /// public string SQCode { get; set; } /// /// 序列类型 /// public EnumSequenceType? SQType { get; set; } } }