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

20 lines
422 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 PrdTaskReleaseUpInput
{
/// <summary>
/// 生产任务ID列表
/// </summary>
public List<string> TaskIds { get; set; }
}
}