飞依诺接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
949 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.ERPWMS.Entity
{
public class GetPurchaseStockInCondition
{
/// <summary>
/// 送货单号
/// </summary>
public string ASNCode { get; set; }
/// <summary>
/// 采购订单
/// </summary>
public string PO { get; set; }
/// <summary>
/// 维护日期(开始)
/// </summary>
public DateTime? dModifyDateFrom { get; set; }
/// <summary>
/// 维护日期(结束)
/// </summary>
public DateTime? dModifyDateTo { get; set; }
/// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; }
//页码
public int? PageIndex { get; set; }
//每页显示数量
public int? PageSize { get; set; }
}
}