using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Client.Model.AppModels.Condition.Base { /// /// 托盘 /// public class PalletSearchCondition : PageQueryConditionInfo { /// /// Id /// public int? Id { get; set; } /// /// 托盘信息 /// public string PalletInfo { get; set; } /// /// 托盘类型 /// public string PalletType { get; set; } /// /// 使用标识 /// public bool? IsUsed { get; set; } } }