Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entitys/Dto/PrdManage/MoCrInput.cs
2023-04-26 09:58:10 +08:00

20 lines
413 B
C#

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