/*********************************************************************** * 功能描述:OrderDetail * 创建日期:05/17/2017 08:28:59 * 创建作者:李太云 * 电话: * 邮件: ***********************************************************************/ #region using using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; using System.ComponentModel.DataAnnotations; #endregion namespace Pcb.Domain { /// ///OrderDetail 查询 /// public class OrderDetailSearch { /// /// 查询关键字 /// public string SearchKey { get; set; } /// /// 高级查询 /// public int AdvancedQuery { get; set; } /// /// 大学ID /// public int? CollegeId { get; set; } /// /// Id /// public int Id { get; set; } /// /// Id2 /// public int Id2 { get; set; } /// /// MainId /// public int? MainId { get; set; } /// /// MainId2 /// public int? MainId2 { get; set; } /// /// ProType /// public int? ProType { get; set; } /// /// ProType2 /// public int? ProType2 { get; set; } /// /// ProName /// public string ProName { get; set; } /// /// Status /// public int? Status { get; set; } /// /// Status2 /// public int? Status2 { get; set; } /// /// ProId /// public int? ProId { get; set; } /// /// ProId2 /// public int? ProId2 { get; set; } /// /// IsPay /// public bool? IsPay { get; set; } /// /// PayTime /// public DateTime? PayTime { get; set; } /// /// TotalMoney /// public decimal? TotalMoney { get; set; } /// /// TotalMoney2 /// public decimal? TotalMoney2 { get; set; } /// /// PayMoney /// public decimal? PayMoney { get; set; } /// /// PayMoney2 /// public decimal? PayMoney2 { get; set; } /// /// TotalWeight /// public decimal? TotalWeight { get; set; } /// /// TotalWeight2 /// public decimal? TotalWeight2 { get; set; } /// /// CreateTime /// public DateTime? CreateTime { get; set; } /// /// InfoDetail /// public string InfoDetail { get; set; } /// /// DeliveryDays /// public int? DeliveryDays { get; set; } /// /// DeliveryDays2 /// public int? DeliveryDays2 { get; set; } /// /// DeliveryDate /// public DateTime? DeliveryDate { get; set; } /// /// IsFinish /// public bool? IsFinish { get; set; } /// /// FinishTime /// public DateTime? FinishTime { get; set; } /// /// BuyNum /// public int? BuyNum { get; set; } /// /// BuyNum2 /// public int? BuyNum2 { get; set; } /// /// CustomNote /// public string CustomNote { get; set; } /// /// AdminNote /// public string AdminNote { get; set; } /// /// MbId /// public int? MbId { get; set; } /// /// MbId2 /// public int? MbId2 { get; set; } /// /// FactPackNum /// public int? FactPackNum { get; set; } /// /// FactPackNum2 /// public int? FactPackNum2 { get; set; } /// /// FactPackNumReason /// public string FactPackNumReason { get; set; } /// /// ActualReceiveNum /// public int? ActualReceiveNum { get; set; } /// /// ActualReceiveNum2 /// public int? ActualReceiveNum2 { get; set; } /// /// IsReconciliation /// public bool? IsReconciliation { get; set; } /// /// ReconciliationMoney /// public decimal? ReconciliationMoney { get; set; } /// /// ReconciliationMoney2 /// public decimal? ReconciliationMoney2 { get; set; } /// /// ReconciliationTime /// public DateTime? ReconciliationTime { get; set; } /// /// CancelReason /// public string CancelReason { get; set; } /// /// CostMoney /// public decimal? CostMoney { get; set; } /// /// CostMoney2 /// public decimal? CostMoney2 { get; set; } /// /// FactoryId /// public int? FactoryId { get; set; } /// /// FactoryId2 /// public int? FactoryId2 { get; set; } /// /// ReconciliationRemark /// public string ReconciliationRemark { get; set; } /// /// AllActualReceiveTime /// public DateTime? AllActualReceiveTime { get; set; } /// /// IsSendToALLPCB /// public bool? IsSendToALLPCB { get; set; } /// /// SendToALLPCBTime /// public DateTime? SendToALLPCBTime { get; set; } /// /// SendToALLPCBExpNo /// public string SendToALLPCBExpNo { get; set; } /// /// SendToALLPCBExpName /// public string SendToALLPCBExpName { get; set; } /// /// 最低购买数量 /// public int? MinBuyNum { get; set; } /// /// 最低购买数量2 /// public int? MinBuyNum2 { get; set; } /// /// ProcessStatus /// public int? ProcessStatus { get; set; } /// /// ProcessStatus2 /// public int? ProcessStatus2 { get; set; } /// /// IsRefund /// public bool? IsRefund { get; set; } /// /// 信用支付状态 /// public short? CreditPayStatus { get; set; } /// /// 所属账单 /// public int? CreditAccountId { get; set; } /// /// 业务员Id /// public int? StaffId { get; set; } /// /// 公司名 /// public int? CompanyId { get; set; } /// /// 多Id字符串 /// public string Ids { get;set; } /// /// 订单包Id列表 /// public string GroupIds { get;set; } /// /// 支付时间搜索范围, 开始时间 /// public DateTime? PayTimeStartDate { get; set; } /// /// 支付时间搜索范围, 结束时间 /// public DateTime? PayTimeEndDate { get; set; } public string CustomerNo { get; set; } public string ShipNO { get; set; } public int? AdminId { get; set; } /// /// 是否直接发给客户 /// public bool? IsSendToCus { get; set; } /// /// 是否内部已经发货 /// public bool? IsInternalShiped { get; set; } /// /// 协同工厂 /// public int? JoinFactoryId { get; set; } /// /// 协同工厂编号列表 /// public string JoinFactoryIds { get; set; } } }