组织管理,新增设备与工位绑定、解绑功能

This commit is contained in:
DEVICE8\12494
2023-04-26 17:58:53 +08:00
parent 631bb0c0e8
commit 6118106b72
9 changed files with 84 additions and 19 deletions

View File

@@ -11,6 +11,22 @@ namespace Tnb.ProductionMgr.Entities.Dto
/// </summary>
public class EquipmentListOutput //: EqpEquipment 不能直接继承实体类
{
/// <summary>
/// 设备Id
/// </summary>
public string eqp_id { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string eqp_code { get; set; }
/// <summary>
/// 设备类型编码
/// </summary>
public string eqp_type_code { get; set; }
/// <summary>
/// 设备机台号
/// </summary>
public string eqp_machine_num { get; set; }
/// <summary>
/// 任务单数量
/// </summary>
@@ -22,7 +38,11 @@ namespace Tnb.ProductionMgr.Entities.Dto
/// <summary>
/// 最早开始时间
/// </summary>
public DateTime? first_date { get; set; }
public string first_date { get; set; }
/// <summary>
/// 预计结束时间
/// </summary>
public DateTime? estimated_end_date { get; set; }

View File

@@ -12,7 +12,7 @@ namespace Tnb.ProductionMgr.Entities.Dto
public class IcmoUpInput
{
/// <summary>
/// 类别 1、模具 2、设备
/// 类别 1、设备 2、模具
/// </summary>
public int category { get; set; }
/// <summary>