生产管理-生产工单排产代码调整

This commit is contained in:
DEVICE8\12494
2023-04-23 13:41:40 +08:00
parent 67113fabf8
commit f0fde866c8
13 changed files with 1039 additions and 517 deletions

View File

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