36 lines
909 B
C#
36 lines
909 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Filter;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
|
{
|
|
public class PrdPackReportQueryInput : PageInputBase
|
|
{
|
|
/// <summary>
|
|
/// 生产任务编号
|
|
/// </summary>
|
|
public string mo_task_code { get; set; }
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
public long[] estimated_start_date { get; set; }
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
public long[] estimated_end_date { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产线
|
|
/// </summary>
|
|
public string workline { get; set; }
|
|
/// <summary>
|
|
/// 工序
|
|
/// </summary>
|
|
public string process { get; set; }
|
|
}
|
|
}
|