using System; using System.Collections.Generic; using System.Text; namespace JiepeiWMS.Services.SearchModels { public class ShearchWMCheckInfo { /// /// 主键 /// public int? Id { get; set; } /// /// 主键列表 /// public string IdList { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 起始状态 /// public int? StartStatus { get; set; } /// /// 状态列表 /// public List ListStatus { get; set; } /// /// 起始创建时间 /// public DateTime? StartCreateTime { get; set; } /// /// 结束创建时间 /// public DateTime? EndCreateTime { get; set; } /// /// 关键字 /// public string Key { get; set; } } }