生产管理新增,同组工单下发,取消同组工单
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.ProductionMgr.Entitys.Entity;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entitys.Dto.PrdManage
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备列表输出参数
|
||||
/// </summary>
|
||||
public class EquipmentListOutput : EqpEquipment
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务单数量
|
||||
/// </summary>
|
||||
public int task_list_qty { get; set; }
|
||||
/// <summary>
|
||||
/// 吨位
|
||||
/// </summary>
|
||||
public double tonnage { get; set; }
|
||||
/// <summary>
|
||||
/// 最早开始时间
|
||||
/// </summary>
|
||||
public DateTime? first_date { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user