using JNPF.Common.Filter;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdPackReportQueryInput : PageInputBase
{
///
/// 生产任务编号
///
public string mo_task_code { get; set; }
///
/// 开始时间
///
public long[] estimated_start_date { get; set; }
///
/// 结束时间
///
public long[] estimated_end_date { get; set; }
///
/// 产线
///
public string workline { get; set; }
///
/// 工序
///
public string process { get; set; }
///
/// 工位id
///
public string stationId { get; set; }
}
}