20 lines
422 B
C#
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; }
|
|
}
|
|
}
|