生产管理,新增修改任务单接口

This commit is contained in:
DEVICE8\12494
2023-04-26 14:08:11 +08:00
parent 4bfceebed8
commit 631bb0c0e8
26 changed files with 144 additions and 57 deletions

View File

@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto
{
/// <summary>
/// 生产任务单更新输入参数
/// </summary>
public class IcmoUpInput
{
/// <summary>
/// 类别 1、模具 2、设备
/// </summary>
public int category { get; set; }
/// <summary>
/// 生产任务单Id
/// </summary>
public string icmo_id { get; set; }
/// <summary>
/// 工单Id
/// </summary>
public string mo_id { get; set; }
/// <summary>
/// 模具Id
/// </summary>
public string mold_id { get; set; }
/// <summary>
/// 设备Id
/// </summary>
public string eqp_id { get; set; }
/// <summary>
/// 生产任务单数量
/// </summary>
public int scheduled_qty { get; set; }
}
}