using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entitys.Dto
{
///
/// 生产任务单下发输入参数
///
public class PrdTaskReleaseUpInput
{
///
/// 生产任务ID列表
///
public List TaskIds { get; set; }
}
}