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 SequenceCondition: OperationInfo
{
///
/// 序列ID
///
public int? SQId { get; set; }
///
/// 多个序列ID
///
public int? SQIds { get; set; }
///
/// 主键
///
public string NewId { get; set; }
///
/// 序列编码
///
public string SQCode { get; set; }
}
}