using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Webdiyer.WebControls.Mvc; namespace Pcb.Domain { public class WMPurchaseInfoSearch { /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 仓库名称 /// public string WareHouseName { get; set; } /// /// 采购员名称 /// public string EmployeeName { get; set; } /// /// 商品名称 /// public string ProductListName { get; set; } /// /// 规格名称 /// public string ProductSpecName { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 单价 /// public decimal Price { get; set; } /// /// 实际数量 /// public int ActualQuantity { get; set; } public string CheckKey { get; set; } public int SupplierId { get; set; } public int WareHouseId { get; set; } public int EmployeeId { get; set; } public DateTime? CreateTime { get; set; } public DateTime? EndCreateTime { get; set; } public DateTime ExpectedArrivalTime { get; set; } public int Type { get; set; } public string Remark { get; set; } public decimal ActualAmount { get; set; } public int CheckAdminId { get; set; } public int CheckRank { get; set; } public int _Status = -1; public int? Status { get;set; } public string CheckRemark { get; set; } } }