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.
37 lines
825 B
37 lines
825 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.ERPWMS.Entity
|
|
{
|
|
public class POCondition
|
|
{
|
|
/// <summary>
|
|
/// 采购订单号
|
|
/// </summary>
|
|
public string POCode { 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; }
|
|
}
|
|
}
|