using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.ProductionMgr.Entitys.Dto { /// /// 生产操作记录查询参数 /// public class PrdTaskOperInput { /// /// 工单号 /// public string mo_no { get; set; } /// /// 任务单号 /// public string task_no { get; set; } /// /// 产品编号 /// public string item_code { get; set; } /// /// 设备编号 /// public string eqp_code { get; set; } /// /// 计划生产开始日期 /// public DateTime? plan_start_date{ get; set; } /// /// 计划生产结束日期 /// public DateTime? plan_end_date { get; set; } /// /// 任务ID /// public string task_id { get; set; } } }