Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entitys/Dto/PrdManage/MoCrInput.cs
DEVICE8\12494 a1bf240ff2 生产管理
2023-04-21 16:54:16 +08:00

20 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionPlanMgr.Entitys.Dto.WorkOrder
{
/// <summary>
/// 生产工单下发输入参数
/// </summary>
public class MoCrInput
{
/// <summary>
/// 生产工单Id列表
/// </summary>
public List<string> WorkOrderIds { get; set; }
}
}